// JavaScript Document

function abrefoto(idfoto, ruta, titulo)
	{
		var pos;
		if (window.pageYOffset) pos = window.pageYOffset
			else if (document.documentElement && document.documentElement.scrollTop) pos = document.documentElement.scrollTop
				else if (document.body) pos = document.body.scrollTop
		pos = eval(pos+120);
		document.getElementById('cabecera_ampliada').innerHTML =titulo;
		document.getElementById('foto_ampliada').innerHTML='<a href="javascript:cierrafoto()" title="cerrar foto"><img src="/'+ ruta +'/fotos/zoom/'+idfoto+'"  alt="cerrar foto" /></a>';
		document.getElementById('foto_zoom').style.top=pos+'px';
		document.getElementById('foto_zoom').style.visibility='visible';	
	}

function cierrafoto()
	{
		document.getElementById('foto_zoom').style.visibility='hidden';
	}

function cargafoto(){
	var arrayparam=location.search.replace(/^./,"").split(/&/);
	nomfoto=arrayparam[0];
	document.write('<img src="./fotos/zoom/'+nomfoto+'" alt="" />');
}

function abreventana(url) {
	var ventana = window.open('http://' + url);
	ventana.focus();
	return false;
}
function abrefotoestatica(idfoto, ruta, titulo)
	{
		var pos;
		if (window.pageYOffset) pos = window.pageYOffset
			else if (document.documentElement && document.documentElement.scrollTop) pos = document.documentElement.scrollTop
				else if (document.body) pos = document.body.scrollTop
		pos = eval(pos+120);
		document.getElementById('cabecera_ampliada').innerHTML =titulo;
		document.getElementById('foto_ampliada').innerHTML='<a href="javascript:cierrafoto()" title="cerrar foto"><img src="/'+ ruta +'/'+idfoto+'"  alt="cerrar foto" /></a>';
		document.getElementById('foto_zoom').style.top=pos+'px';
		document.getElementById('foto_zoom').style.visibility='visible';	
	}