/** © menosdiez.com
 **/

function Abre(page) {
OpenWin = this.open(page, "Ventana", "toolbar=no,menubar=no,location=no,status=yes,scrollbars=yes,resizable=yes,width=400px,height=300px");
}

function Activacapa(nombrecapa) {
	if (document.getElementById(nombrecapa).style.display == "none") {
      document.getElementById(nombrecapa).style.display = "";
      document.getElementById(nombrecapa+'txt').innerHTML="Ocultar";
     } else {
       document.getElementById(nombrecapa).style.display = "none";
       document.getElementById(nombrecapa+'txt').innerHTML="Mostrar";
       }
}

function Enviar() {
	setTimeout(	document.formulario.submit(),2000);
}


// MENU DESPLEGABLE

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("menuprincipal");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;