// Quality page show/hide tables

function showText(id){

	for (i = 1; i <= 10; i++){	// loop through the tables
		
		if (id > 0){ // a selected table, hide all tables initially		
		document.getElementById("table" + i).style.display = 'none';	
		}
		else { // showing all the tables
		document.getElementById("table" + i).style.display = 'block';	
		}
		
	}	
	
	if (id > 0){ // a selected table
	document.getElementById("table" + id).style.display = 'block';
	document.getElementById('AllLink').style.display = 'inline';
	document.getElementById('bttLink').style.display = 'none';	
	window.scrollTo(0,1000) // scroll as far down the page as we can
	}
	else {
	document.getElementById('AllLink').style.display = 'none';
	document.getElementById('bttLink').style.display = 'block';
	window.scrollTo(0,563) // scroll to just above the logos table
	}

}

// END Quality page show/hide tables