function mostrar(nombreCapa1){ 
	document.getElementById(nombreCapa1).style.visibility = "visible";
} 

function ocultar(nombreCapa1){ 
	document.getElementById(nombreCapa1).style.visibility = "hidden"; 
} 
