function imgWin(pFileName, pTitle, pClose) 
{
  photoWin = window.open( "", "zevzduchu_img_win", "width="+420+",height="+360+",screenX=20,screenY=40,left=20,top=40, status=no");
  photoWin.document.write('<html><head><title>Ze vzduchu cz' + pTitle + '</title>');
  photoWin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8">');
  photoWin.document.write('<meta http-equiv="pragma" content="no-cache" >');
  photoWin.document.write('<meta http-equiv="cache-control" content="no-cache, must-revalidate">');
  photoWin.document.write('<script language="JavaScript" type="text/javascript">');
  photoWin.document.write( "function resize_win(){ var ImgObj=document.getElementById(\'zevzduchu_img\');  OrigW=ImgObj.width; OrigH=ImgObj.height; resizeTo(OrigW+28,OrigH+90);}");
  photoWin.document.write('</script>');

  photoWin.document.write('<style>');
  photoWin.document.write('body{background-color:#FFFFFF;}');
  photoWin.document.write('h1 {text-align:center; font-family:Arial, Helvetica, sans-serif; font-size:12px; font-weight:bolder; text-transform:uppercase; color: #000000;}');
  photoWin.document.write('</style>');
  
  photoWin.document.write('</head>');
  photoWin.document.write('<body onload="resize_win()">');
  photoWin.document.write('<h1>' + pTitle + '</h1>');
  photoWin.document.write('<a href="javascript:self.close()" alt="zavřít">');
  photoWin.document.write('<img id="zevzduchu_img" name="zevzduchu_img" src="' + pFileName + '"  border="0" alt="' + pClose + '" />');
  photoWin.document.write('</a>');
  photoWin.document.write('</body></html>');
  photoWin.document.close();
  photoWin.focus();
}
