// JavaScript Document
function window_open(plik,tytul,w,h) {
		opcje = "menubar=0,location=0,status=0,toolbar=0,directories=0,alwaysRaised=1,scrollbars=1,titlebar=0,resizable=0";
		if (w!="") opcje += ",width="+w; else opcje += ",width=400";
		if (h!="") opcje += ",height="+h; else opcje += ",height=400";
		
		d = window.open(plik,tytul,opcje);
		//d.document.write(w+"###"+h);
}
