//alert ("Got me!");

function zeigMirs (level) { // by MH
	
	//alert ("Got me :-)");
	if (document.getElementById(level).style.visibility=='visible')
	document.getElementById(level).style.visibility='hidden';
	else document.getElementById(level).style.visibility='visible';

}

function clearForm (inputStrings) { // by MH

	var inputs = inputStrings.split (",");
	//alert (inputs);
	for (i=0;i<inputs.length;i++) 
	eval ('document.Formular.'+inputs[i]+'.value=""');
}

function selectEvent (ev_ID) {
	//alert ("Got me :-)");
	if (ev_ID != '') {
		theLocation = "index.php?channel=contact&as=3&res_event="+ev_ID;
		document.location.href = theLocation;
	}
}
