

	
	function newWindow(adres,szerokosc,wysokosc) {
	    lewa=(screen.width-szerokosc)/2;
	    gora=(screen.height-wysokosc)/2;
	    config='left='+lewa+',top='+gora+',width='+szerokosc+',height='+wysokosc+',innerheight='+wysokosc+',innerwidth='+szerokosc+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes';
	    okno=window.open(adres,'Popup',config);
	    okno.focus();
	}



	function printPage(){
	    adres = document.location.href;
	    newWindow(adres+'?print=t');	
	}
	
	function clearInput(inp){
	    $(inp).value="";
	}
