// JavaScript Document
<!--
Okno = null;
function okienko (src, w, h)
{
ah=screen.availHeight;
if (h < ah){h=h;}
else {h=ah;}

if(Okno!=null)
{
	if(Okno.closed==false)	Okno.window.close();
	Okno=null;
}

if (Okno==null || Okno.closed)
{
	ustawienia=
	"width=" + w + ","
	 +"height=" + h + ","
	 +"toolbar=no,"
	 +"location=no,"
	 +"directories=no,"
	 +"status=yes,"
	 +"menubar=no,"
	 +"scrollbars=yes,"
	 +"resizable=no";
	title = '';
 
Okno = window.open(src, title, ustawienia);
}

}


-->