//<!-- ****** Funkcja wyświetlająca oddzielną stronę w nowym oknie ***** -->

function openWindow(address, width, height) {
	if(!width) width = 428;
	if(!height) height = 500;
	win1 = window.open(address,'', 'width=' + width + ', height=' + height + ', toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no');
	win1.focus();
}
