nn4=(document.layers) ? true : false; 
ie4=(document.all) ? true : false; 

Nowe=null;

/////////////////////////////////////
function Okno(l,t,w,h,plik,scrolbary,parametry) 
{ 
	//alert(plik+parametry);
	
	if (Nowe) 
	{
 		if (ie4) 
 			Nowe.close(); 
 		else 
 		if (nn4) 
 			Nowe.closed; 
 			
 		Nowe=null 
 	}; 
	
	var sb = 'no';
	if( scrolbary )
		sb='yes';
			
	Nowe=window.open(plik+parametry,"","toolbar=no,menubar=no,location=no,personalbar=no,scrollbars="+sb+",status=no,directories=no,resizable="+sb+",height="+h+",width="+w+",left="+l+",top="+t);
	//alert('ok');
	
	//Nowe=window.showModalDialog(plik,"","toolbar=no,menubar=no,location=no,personalbar=no,scrollbars="+sb+",status=no,directories=no,resizable="+sb+",height="+h+",width="+w+",left="+l+",top="+t);
	//Nowe=window.open("nowy_wpis.php?par=2", "","toolbar=yes,menubar=yes,location=yes,personalbar=no,scrollbars=no,status=yes,directories=yes,resizable=yes,height="+h+",width="+w);

	Nowe.focus();	
} 

function OknoZamknij()
{
		//alert('ZAMKNIJ');
		Nowe.close();
}