// JavaScript Document
function eingabefeld (name, zustand_blur) {
  //alert (name);
  if (zustand_blur == 1) {
	  //document.formular[name].style.backgroundColor="#00FF00";
	  document.Formular[name].className="form-inputfield";
  } else if (zustand_blur == 0) {
	  //document.formular[name].style.backgroundColor="#0000FF";
	  document.Formular[name].className="form-inputfield_a";
  }
}
  
function textfeld (name, zustand_blur) {
  //alert (name);
  if (zustand_blur == 1) {
	  //document.formular[name].style.backgroundColor="#00FF00";
	  document.Formular[name].className="form-textarea";
  } else if (zustand_blur == 0) {
	  //document.formular[name].style.backgroundColor="#0000FF";
	  document.Formular[name].className="form-textarea_a";
  } 
  
}