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

