
/* 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);
}

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;
	
function cambiaImagen(id,imagenp, imagen_on){
	imagen = document.getElementById('imagenfotos');
	imagen.background= "imagenes/comun/ajax-loader.gif";
	imagen.src= imagenp;
	id.src= "imagenes/comun/"+imagen_on;
}
function retornaImagen(id, imagenp, imagen_off){
//	imagen = document.getElementById('imagenfotos');
//	imagen.src= "imagenes/comun/"+imagenp;
	id.src= "imagenes/comun/"+imagen_off;	
}
	
