// JavaScript Document
function abrirventana(pagina,ancho,alto,scroll){
	window.open(pagina,"","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + scroll + ",resizable=yes,width=" + ancho + ",height=" + alto + ",top=85,left=140");
}

function cargarfoto(imagen,ancho,alto){
	fin=ancho;
	derecha=(screen.width-ancho)/2;
	arriba=(screen.height-alto)/2;
	
	opciones = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
	ventana = window.open("ampliarfoto.php?img=" + imagen, "_blank", opciones);
}

function cargarfotomini(srcarchivo,epigrafe,url){
	document.getElementById("fotosrc").src = srcarchivo;
	document.getElementById("fotoepigrafe").innerHTML = epigrafe;
	document.getElementById("fotolink").href = "javascript:abrirventana('ampliarfoto.php?foto=" + url + "&epi=" + epigrafe + "','0','0')";

}