// JavaScript Document
// ### INFO form-value: Choosen by clicking on [recht] or  [steuer]

function setValue(what) {
	if (what==1) {
		document.form1.type.value="st";
		}
	else {
		document.form1.type.value="";
		}	
	document.form1.submit();
	}
