<!--
// This function is used to show/hide specific information on the page - KVN
var LastAreaShown='0'; // Set default location variable
function show_me(area_id){
	// check if need to hide an area
	if (area_id==LastAreaShown){
		document.getElementById(area_id).style.display= "none";
		LastAreaShown='x';
		document.getElementById('specTXT').innerHTML = ""; // Clear Hide Specification Text
	}else{
		if (LastAreaShown!='x'){
			document.getElementById(LastAreaShown).style.display= "none";
		}
		document.getElementById(area_id).style.display= "block";
		LastAreaShown=area_id;
		document.getElementById('specTXT').innerHTML = "Hide&nbsp;"; // Show Hide Specification Text
	}
}
//-->