function bopenWindow(theURL,winName,features) 
	{ 
	NewWindow = window.open(theURL,winName,features);

	NewWindow.document.open(); 
	NewWindow.document.write('<html>');
	NewWindow.document.write('<head>');
	NewWindow.document.write('<title>'+winName+'</title>');
	NewWindow.document.write('</head>');
	NewWindow.document.write('<body bgcolor="white" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
	NewWindow.document.write('<a href="#" onclick="javascript:self.close();"><img src='+theURL+' border="0" alt="Zamknij okno"></a>');
	NewWindow.document.write('</body>');
	NewWindow.document.write('</html>'); 
	NewWindow.document.close(); 
	NewWindow.focus(); 
	}


	
	
function displayWindow(url, width, height) 
        {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no,toolbar=no,location=no' );
        }

function displayWindow1(url, width, height)
        {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no,toolbar=no' );
        }


function printWindow()
        {
        bV = parseInt(navigator.appVersion);
          if (bV >= 4) window.print();
        }
