// zmiana terminu
function zapytanie() {
	var wys=screen.height
	var szer=screen.width
	var x=400
	var y=280	
        var left
	var top
	left=(szer-x)/2
	top=(wys-y)/2
  	o = window.open('zapytanie.php', 'Termin', 'toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, copyhistory=0, status=0, left='+left+', top='+top+', width='+x+', height='+y+'')
	o.focus();
	//return false;
}