	function showhide(id){
				if (document.getElementById(id).style.display=="none"){
			document.getElementById(id).style.display="";
		}
		else{
			document.getElementById(id).style.display="none";
		}
	}

	function none(){}

	function showLayer(Layer){
		document.getElementById(Layer).style.visibility='visible';
	}

	function hideLayer(Layer){
		document.getElementById(Layer).style.visibility='hidden';
	}

	
