function oWin(pFileName, pTitle, pClose) {
  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("\n");
  photoWin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=windows-1250">');
  photoWin.document.write("\n");
  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+90);}");
  
  photoWin.document.write("function setWindow(){imgx = document.MyImage.width; imgy = document.MyImage.height; if(document.MyImage.width > 984)  { imgx = 1024; } else { imgx += 40; }    if(document.MyImage.height > 1200) { imgy = 1200; }  else { imgy += 120; }    window.resizeTo(imgx, imgy)	}");
  //photoWin.document.write("\n");
  photoWin.document.write('</script>');
  photoWin.document.write("\n");
  
  
  

  photoWin.document.write('<style>');
  photoWin.document.write("\n");
   photoWin.document.write('body{background-color:#FFFFFF;}');
    photoWin.document.write('img{border:0px;}');
   photoWin.document.write("\n");
   photoWin.document.write('h1{	text-align:center;font-family:Arial, Helvetica, sans-serif;font-size:12px;font-weight:bolder;color: #000000;}');
   photoWin.document.write("\n");
  photoWin.document.write('</style>');
  photoWin.document.write("\n");
  photoWin.document.write('</head>');
  photoWin.document.write("\n");
  photoWin.document.write('<body onload="setWindow();self.focus();">');
  photoWin.document.write("\n");
  photoWin.document.write('<h1>' + pTitle + '</h1>');
  photoWin.document.write("\n");
  photoWin.document.write('<a class="window" href="javascript:self.close()" alt="Close">');
  photoWin.document.write("\n");
  photoWin.document.write('<img name="MyImage" src="' + pFileName + '"   alt="' + pClose + '" >');
  photoWin.document.write("\n");
  photoWin.document.write('</a>');
  photoWin.document.write("\n");
  photoWin.document.write('</body></html>');
  photoWin.document.close();
  photoWin.focus();
}
