function zobrazit(foto,w,h) {
    okno=window.open("","","left=50,top=50,width="+w+",height="+h+",menubar=no,resizable=no");

 with (okno.document)
 {
  open();
  writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">');
  writeln('<meta http-equiv="content-type" content="text/html; charset=WINDOWS-1250" />');
  writeln('<title>Foto</title>');
  writeln('</head>');
  writeln('<body style="margin: 0;">');
  writeln('<img src="'+foto+'" border="0" alt="reference" />');
  writeln('</body>\n</html>');
  close();
 }
  okno.focus();
}

