// JavaScript Document
function NewWindow(url,w,h){
	var atributos = "toolbar=0,location=0,directories=0,menubar=0,resizable=0,scrollbars=1,status=1";
	nueva_ventana=window.open(url,"WebShisai",atributos + ",height=" + h + ",width=" + w + ",top=10,left=10");
}
function mostrarocultar(nombreCapa){
	if (document.getElementById(nombreCapa).style.visibility=="hidden"){
	document.getElementById(nombreCapa).style.visibility="visible";}
	else{document.getElementById(nombreCapa).style.visibility="hidden"; }
	if(document.getElementById(nombreCapa).style.display == 'inline') {
			document.getElementById(nombreCapa).style.display = 'none';
		} else {
			document.getElementById(nombreCapa).style.display = 'inline';
		}
} 
function mostrar(nombreCapa){
	document.getElementById(nombreCapa).style.visibility="visible";
	document.getElementById(nombreCapa).style.display = 'inline';
}

function ocultar(nombreCapa){
	document.getElementById(nombreCapa).style.visibility="hidden";
	document.getElementById(nombreCapa).style.display = 'none';
} 
