
/* 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){
	// Arreglo para que no se desplegue todo el menu
	for (i=0;i<7;i++){
		var lista = 'lista_ciudades_'+i;					
			var elemento = document.getElementById(lista);
			if (elemento)
				elemento.style.display = 'none';
	}
	var opcion = document.getElementById(id);
	if (opcion)
		if (opcion.style.display == 'none'){
			opcion.style.display = 'block';					
		}	
		else
			opcion.style.display = 'none';
}

function mostrarOcultarImagenes(id, num){
	var imagen
	for (var i=0; i<num; i++){
		if (id != i){
			imagen = document.getElementById('imagen_'+i);
			if (imagen && imagen.style.display == 'block')
				imagen.style.display = 'none';					
		}		
	}
	imagen = document.getElementById('imagen_'+id);
	if (imagen && imagen.style.display == 'none'){
		imagen.style.display = 'block';		
	}

}
