function abreFoto(textoAlternativo, imagen)
{
  miFoto=window.open("","Foto","directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizeable=yes, width=300,height=200, top=0, left=0");
  miFoto.document.write("<html><head>");
  miFoto.document.write("<title>" + textoAlternativo + "</title></head>");
  miFoto.document.write("<body scroll='auto' style='{margin:0px 0px 0px 0px; padding:0px 0px 0px 0px;}' onLoad='javascript:window.resizeTo(((document.images[0].width > screen.width)?screen.width:document.images[0].width+10), ((document.images[0].height > screen.height)?(screen.height-25):document.images[0].height+29))'>");
  miFoto.document.write("<div id='foto' style='{position:absolute; left:0px; top:0px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px;}'>");
  miFoto.document.write("<img src = '" + imagen + "' alt='" + textoAlternativo + "/'>");
  miFoto.document.write("</div></body></html>");
  miFoto.document.close();
  miFoto.focus();
}