function newWin(foto)
  {
  nImage = new Image();
  nImage.src = foto;
  width = screen.width;
  height = screen.height;
  i = nImage.width;
  j = nImage.height;
  k = 'no';
    if (i > screen.width)
      {
        i = screen.width - 580;
        j = nImage.height + 35;
        k = 'yes';
       }
     if (j > screen.height)
       {
         j = screen.height - 100;
         i = nImage.width + 40;
         k = 'yes';
       }
     if (width == 0 || height == 0)
       {
         i = 640;
         j = 480;
         k = 'yes';
       }
     else
       {
         i = i + 540
         j = j + 390
       }
  myWin= open("", "_blank", 
  "width="+i+",height="+j+",status=no,toolbar=no,menubar=no,scrollbars="+k+",resizable="+k+"");
  myWin.document.open();
  myWin.document.write("<html><head><title>Photo Gallery</title></head><body bgcolor='#FEF2D2' leftmargin='7'><p align='center' style='margin-left: 10; margin-top: 10'><img border='0' style='border:1px solid #d10d0d;' src='images/");
  myWin.document.write(foto);
  myWin.document.write("'></p></body></html>");
  myWin.document.close();}

