function fWin(vImgUrl, vImgWidth,  vImgHeight)
{
   var vWindowWidth = vImgWidth * 1.0 ;
   var vWindowHeight =  vImgHeight * 1.0 ;
   var vWindowLeft = ( screen.width / 2 ) - ( vWindowWidth / 2);
   var vWindowTop = ( screen.height / 2 ) - ( vWindowHeight / 2);
   var vWindow = window.open("", "", "toolbar=no, menubar=no, location=no, personalbar=no, status=no, resizable=no, scrollbars=no, copyhistory=no, width="+vWindowWidth+", height="+vWindowHeight+", top="+vWindowTop+", left="+vWindowLeft);
   vWindow.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">'+
   '<html>'+
   '<head>'+
   '<title>Eurosystem</title>'+
   '<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">'+
   '</head>'+
   '<body style="text-align:center; margin:0px; padding:0px; overflow:auto;background-color:white;">'+
   '<img src="'+vImgUrl+'" style="margin:0;"oncontextmenu="return false" onselectstart="return false" onselect="return false" oncopy="return false" ondragstart="return false" ondrag="return false" onclick="window.close()" />'+
   '</body>'+
   '</html>');  
}
