function AbrirFoto(fotografia,x,y)
{

ventana=open("","","toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no,width="+x+",height="+y);
    ventana.document.write("<HTNL><HEAD><TITLE>Torre de Justo</TITLE></HEAD>");
    ventana.document.write("<BODY topmargin=\"0\" leftmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" onblur=\"window.close()\">");
    ventana.document.write("<img src="+fotografia+">");
    ventana.document.write("</BODY></HTNL>");
    return; 

}

