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+20);
		document.getElementById('cabecera_ampliada').innerHTML =titulo;
		document.getElementById('foto_ampliada').innerHTML='<a href="javascript:cierrafoto()"><img src="/'+ ruta +'/fotos/zoom/'+idfoto+'"  alt="" /></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 abrewindow(idfoto, titulo)
	{
		newwindow=open('../ubicaciones/foto.html?'+idfoto, "opubi" ,"scrollbars=yes,location=no,toolbar=no,directories=no,menubar=no,resizable=yes,resize=no,status=no,width=700,height=400,screenX=20,screenY=20,left=20,top=20");	
	}

function cargafoto(){
	var arrayparam=location.search.replace(/^./,"").split(/&/);
	nomfoto=arrayparam[0];
	document.write('<img src="./fotos/zoom/'+nomfoto+'" alt="" />');
}