function openCalc(form) 
{
	pozx = 1017;
	pozy = 600;
	//adres = 'calc.php';
	name = 'calc' + (new Date().getTime());
	adres = '';
	//prompt(name);
	form.target = 'calc';
	//name = 'dupa';
	wspolrzednax = (screen.width-pozx)/2;
	wspolrzednay = (screen.height-pozy)/2;
	window.open('calc.php', 'calc', "menubar=no, toolbar=no, scrollbars=yes, resizable=yes,location=no, status=no, width="+pozx+", height="+pozy+", left="+wspolrzednax+", top="+wspolrzednay+"");
	//window.open(adres, name,"menubar=no, toolbar=no, scrollbars=no, resizable=no,location=no, status=no, width="+pozx+", height="+pozy+", left="+wspolrzednax+", top="+wspolrzednay+"")
	//noweOkno.focus()
}