 function aprifoto(foto)
 {
  img = new Image;
  img.src = foto;
  html = '<HTML>\n<head>\n<TITLE>Galeria Los Secretos de La Momia_________________________</TITLE>\n</HEAD>\n <BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0 BGCOLOR=#000000 onblur=\"self.focus()\">\n<CENTER> <IMG SRC="'+foto+'" BORDER=0 NAME=immagine onLoad="window.resizeTo(document.immagine.width,document.immagine.height)"></CENTER>\n</BODY>\n</HTML>';
  posX = (screen.width/2) - (img.width/2);
  posY = (screen.height/2) - (img.height/2);
  popupImage =
 
window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,top='+posY+',left='+posX);
  popupImage.document.open();
  popupImage.document.write(html);
  popupImage.document.close()
 }

//-------------------------------------

function Abrir_popup (pagina,ancho,alto) {
var opciones="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+ancho+",height="+alto+",top=200,left=100";
window.open(pagina,"",opciones);
}
