function confirmSubmit(confirmation){
if (confirm(confirmation)) return true;
else return false;
}

function newWindow(win_url, wys, szer){		
		var left = (screen.width-szer)/2;
		left = Math.round(left);
		var top = (screen.height-wys-100)/2;
		top = Math.round(top);
		nazwa = window.open(win_url,'nazwa','resizable=0,height='+wys+',width='+szer+',top='+top+',left='+left);
		nazwa.moveTo(left,top);
		nazwa.focus();
}