 function window_popup_img(theUrl, FileName,wHeight,wWidth) {
  var MyWin; 
  MyWin = window.open('','_blank','toolbar=no,menubar=no,fullscreen= no ,scrollbars=yes,resizable=yes,width='+wWidth+',height='+wHeight+',top=10,left=10');
  var myDoc = '<html>'+ '<head>'+'<title>'+FileName+'</title>'+'</head>'+'<body >'+'<table align=center border=0>'+'<tr>'+'<td align=center><b><font face = Verdana>'+FileName+'</font></b></td>'+'</tr>'+'<tr>'+'<td align=center>'+'<img src="'+theUrl+'" OnClick="JavaScript:window.close()" onmousedown="JavaScript:window.close()">'+'</td>'+'</tr>'+'</table>'+'</body>'+'</html>';
 MyWin.document.write(myDoc); 
  MyWin.focus();
  }


 function window_popup(theUrl,wHeight,wWidth) {
  var MyWin; 
  MyWin = window.open(theUrl,'_blank','toolbar=no,menubar=no,fullscreen= no ,scrollbars=yes,resizable=yes,width='+wWidth+',height='+wHeight+',top=10,left=10');
  MyWin.focus();
  }