// JavaScript Document

//<![CDATA[
		   
function inicioDos(){	
	if (f_inicio) { f_inicio(); }
	inicio_foto();
}

function f_cerrar(){
	var capa = document.getElementById("fotos");
	capa.style.visibility = "hidden";
}

function verFoto(){
	//window.open(this,"","width=282,height=282,top=100,left=300,scrollbars=0");
	var capa = document.getElementById("fotos");
	var q_foto = document.getElementById("foto");
	var a = this.href;
	var m_tmp = new Array(); 
	var m_tmp = a.split("=");
	q_foto.src = "../imagenes/empresa/" + m_tmp[1];
	capa.style.visibility = "visible";
	return false;
}//fin fventana


function inicio_foto(){
	if (!document.getElementById) return;
	
	var popUp = document.getElementById("instalaciones");
	var enlaces = popUp.getElementsByTagName("area");
	for (var i=0; i<enlaces.length; i++){
		enlaces[i].onclick = verFoto;
	}
	
	
	var capa = document.getElementById("fotos");	
	var enlaces = capa.getElementsByTagName("a");
	enlaces[0].onclick = f_cerrar;
}

// guardamos la funcion de inicio generica para aņadir la que se quiere ahora
var f_inicio = window.onload;
window.onload = inicioDos;

//]]>
