function calcform(form){
	var game=form.game.value/100;
	var amount=(form.rakedhands.value*game*form.percent.value*30.41);
	form.monthly.value=Math.round((amount*1000)/1000);
	form.yearly.value=Math.round((amount*12*1000)/1000);}
