

function newWin(foto)
  {
  nImage = new Image();
  nImage.src = foto;
  width = screen.width;
  height = screen.height;
  i = 850;
  j = 700;
  k = 'no';
         myWin= open("", "_blank",
  "width="+i+",height="+j+",top=80,left=100,status=no,toolbar=no,menubar=no,scrollbars="+k+" ");
  myWin.document.open();
  myWin.document.write("<html><head><title></title><meta http-equiv='Content-Type' content='text/html; charset=windows-1251'></head><body bgcolor='#FFFFFF' leftmargin='7'><a href=# OnClick=\"javascript: window.close();\"><p align='center' style='margin-left: 10; margin-top: 10'><img border='0' src='");
  myWin.document.write(foto);
  myWin.document.write("'><br>   ,  .</p></a></body></html>");
  myWin.document.close();}
