
  function open_window_foto(w,h,foto)
        {
                var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
  myWin = window.open("","_blank",win);
  myWin.document.open();
  myWin.document.write("<html><head><title>Ôîòî</title></head><body bgcolor='#000000' leftmargin='7'><p align='center' style='margin-left: 0; margin-top: 0'>");
  myWin.document.write("<table cellspacing=0 cellpadding=0><tr><td> <img border='0' src='"+foto+"'></td></tr></table>" );
  myWin.document.write("</body></html>");
  myWin.document.close();
        }
