function  CalcField (form){
	var f1=form.field1.value*10.93 - 23.5;
	var f2= Math.round(f1,2);
	var f3=Math.max(f2,0);
	form.field2.value = f3;
}
