function mwzoom(zp)
      {
      imw = zp.width;
      imh = zp.height;
      MWImage = window.open(zp,"Top","left=100,top=100,width="+imw+",height="+imh+",menu=0,navigate=0,statusbar=0");

      with (MWImage.document)
      {
      open();
       writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
       writeln('<html>');
       writeln('<head>');
       writeln('<meta http-equiv="Content-Type" content="text/html; charset=windows-1250" />');
       writeln('<meta http-equiv="Content-Language" content="cs" /> ');
       writeln('<title>IMG</title>');  
       writeln('<style type="text/css"> ');
       writeln('body {margin-top: 0px;font-family: Verdana, \'Geneva CE\', lucida, sans-serif; margin: 0;padding: 0;color: #333333;background-color : #ffffff;text-align: center;}');
       writeln('h1 {padding:0px;margin:5px;font-weight:bold;font-size:10pt;color:#ff3300;}');
       writeln('.bt {font-size : 8pt;font-weight: bold;color:#ffffff;border-top: solid 1px #aaaaaa;border-bottom: solid 1px #666666;border-left: solid 1px #aaaaaa;border-right: solid 1px #666666;background: #888888;text-align: center;}');
       writeln('</style>');
       writeln('</head>');
       writeln('<body>');
       writeln('<h1>Prochor foto</h1>');
       writeln('<img src="'+zp+'" style="cursor:pointer;" onclick="window.close();" />');
       writeln('<p style="text-align:center;"><input type="button" onclick="window.close()" value="zavøít okno" class="bt" /></p>');  
       writeln('</body>\n</html>');
      close();
      }
      MWImage.focus();     
}
           