/*Función para abrir ventana de tamaño variable al clicar*/

function abrirVentana2(direccion,nombre,ancho,alto) {
	if (navigator.appName=="Netscape"){window.open(direccion,nombre,"width="+ancho+",height="+alto+",toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no");}
	else if (navigator.appName=="Microsoft Internet Explorer"){window.open(direccion,nombre,"width="+ancho+",height="+alto+",resizable=no");}
}

/*Funciones para mostrar y ocultar capas*/

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