var a;
function switchlayer(Layer_Name)
{
  		var b = document.getElementById(Layer_Name);
  	if (a) a.style.display = "none";
  		{ b.style.display =  (b.style.display == "block")? "none": "block"; 
  		a = b;}
}