function noweOkno(url, nazwa, szerokosc, wysokosc) {
	x = (screen.width) ? (screen.width - szerokosc) / 2 : 0;
	y = (screen.height) ? (screen.height - wysokosc) / 2 : 0;
	window.open(url, nazwa, 'toolbar=0,location=0,directories=0,menubar=0,status=0,scrollbars=1,resizable=1,left=' + x + ',top=' + y + ',width=' + szerokosc + ',height=' + wysokosc);
}
