<!--
function otworz(url,tytul,szer,wys)
{
	config='left=100,top=100,width='+szer+',height='+wys+',innerheight='+wys+',innerwidth='+szer+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no';
	NoweOkienko=window.open('',tytul,config); 
	NoweOkienko.document.open(); 
    NoweOkienko.document.write('<HTML>');
	NoweOkienko.document.write('<HEAD>');
	NoweOkienko.document.write('<TITLE>'+tytul+'</TITLE>');
	NoweOkienko.document.write('</HEAD>');
	NoweOkienko.document.write('<BODY BGCOLOR=white LEFTMARGIN=0 TOPMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0>');
	NoweOkienko.document.write('<A HREF=# onclick="javascript:self.close();"><IMG SRC='+url+' BORDER=0 ALT="Zamknij"></A>');
	NoweOkienko.document.write('</BODY>');
	NoweOkienko.document.write('</HTML>'); 
	NoweOkienko.document.close();
 	NoweOkienko.focus();
}

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->