function mostrar2(nombreCapa){ 
	var navegador = navigator.appName; 
	if (navegador == "Microsoft Internet Explorer") 
	{	
		document.getElementById(nombreCapa).style.visibility="visible"; 
		document.getElementById(nombreCapa).style.position="static";
	}
	else
	{
		document.getElementById(nombreCapa).style.visibility="visible"; 
		document.getElementById(nombreCapa).style.position="absolute"; 
	}
} 
function mostrar(nombreCapa){ 
	document.getElementById(nombreCapa).style.visibility="visible"; 
} 
function cambio(nombreCapa){ 
	document.images[nombreCapa].src ="img/punto_rojo.gif"; 
} 
function ocultar2(nombreCapa){ 
	document.images[nombreCapa].src ="img/punto_blanco.gif";
}
function ocultar(nombreCapa){ 
	document.getElementById(nombreCapa).style.visibility="hidden"; 
} 
function nada(){}
