function oWin(pFileName, pTitle, pClose) {
  if(pClose=="1")
  	h=90;
  else
    h=60;
  photoWin = window.open( "", "jmenoOkna", "width="+100+",height="+100+",screenX=20,screenY=40,left=20,top=40");
  photoWin.document.write('<html><head><title>' + pTitle + '</title>');
  photoWin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=windows-1250">');
  photoWin.document.write('<script language="JavaScript" type="text/javascript">');
  photoWin.document.write( "function resize_win(){ var ImgObj=document.getElementById(\'MyImage\');  OrigW=ImgObj.width; OrigH=ImgObj.height; resizeTo(OrigW+28,OrigH+"+h+");}");
  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()">');
  if(pClose=="1"){
  	photoWin.document.write('<h1>' + pTitle + '</h1>');
  }
  photoWin.document.write('<a class="window" href="javascript:self.close()" alt="Zavři">');
  photoWin.document.write('<img name="MyImage" src="' + pFileName + '"  border="0" alt="' + pClose + '" />');
  photoWin.document.write('</a>');
  photoWin.document.write('</body></html>');
  photoWin.document.close();
  photoWin.focus();
}