function AbrirVisualizador()
{
  var ancho=screen.width;
  var alto=screen.height;
  desplazamiento="yes";
  var vleft = (screen.width-ancho)/2;
  var vtop = (screen.height-alto)/2;

  open("picture.php?p=0","","toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars="+desplazamiento+",width="+ancho+",height="+alto+",top="+vtop+",left="+vleft);
}


function Ampliar(fotografia,x,y)
{
  var vleft = (screen.width-x)/2;
  var vtop = (screen.height-y)/2;

  ventana=open("","imagen","toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=yes,width="+x+",height="+y+",top="+vtop+",left="+vleft);
  ventana.document.write("<HTNL><HEAD><TITLE>enriquetorrijos / serie &quot;La Grulla&quot;</TITLE></HEAD>");
  ventana.document.write("<BODY bgcolor=\"#000000\" topmargin=\"0\" leftmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" onblur=\"window.close()\">");
  ventana.document.write("<div align=\"center\"><img src=\"imagesg/"+fotografia+"\"></div>");
  ventana.document.write("</BODY></HTNL>");
  return; 
}


function AbrirTextos()
{
  var ancho=900;
  var alto=screen.height-100;
  desplazamiento="yes";
  var vleft = (screen.width-ancho)/2;
  var vtop = (screen.height-alto)/2;

  open("introduccion.htm","","toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars="+desplazamiento+",width="+ancho+",height="+alto+",top="+vtop+",left="+vleft);
}

