// JavaScript Document
// -------------------------------------------------------
// Toggle layer on and off




function showIt(theId) {
	
		document.getElementById(theId).style.visibility = "visible";
			
}
		
function hideIt(theId) {

		document.getElementById(theId).style.visibility = "hidden";
			

		
}


//-----------------------------------------------------
