
/* Fichero con las funciones javascript necesarias para la web*/

function AbrirVentanaNueva(ruta,w,h){	

	popupWin = window.open(ruta, '_blank', 'resizable=no,scrollbars=no,width='+w+',height='+h);
}

function desplegarOpcion(id){
	var opcion = document.getElementById(id);
	if (opcion)
		opcion.style.display = 'block';					
}
function ocultarOpcion(id){
	var opcion = document.getElementById(id);
	if (opcion)
		opcion.style.display = 'none';

}

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("lista_menu");
		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;