<!-- Begin

	 var Eingabe="";

	 function Anschlaege(textarea, maxlang, text)

	 { 
	 	var anzahl = "0";
		txtArray = eval(textarea);
		
		if (txtArray.value.length>maxlang){
			txtArray.value=Eingabe;
			return;
		}
		else {
			anzahl = txtArray.value.length;
			Eingabe=txtArray.value;

			if (text!= null){
				txtField = eval(text);
				txtField.value = maxlang-anzahl;
			}
		}
	}



	function changeValue(checkBox)
	{
		box = eval(checkBox);
		if (!box.checked)
		{
			box.value = '0';
		}
		else
		{
			box.value = '1';
		}		
	}
	
	function changeRBbyID(id)
	{
		document.getElementById(id).checked = true;	

	}
	

// End -->

