// 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";
  } 
  
}

function eingabefeld_small (name, zustand_blur) {
  //alert (name);
  if (zustand_blur == 1) {
	  //document.formular[name].style.backgroundColor="#00FF00";
	  document.Formular[name].className="form-inputfield-small";
  } else if (zustand_blur == 0) {
	  //document.formular[name].style.backgroundColor="#0000FF";
	  document.Formular[name].className="form-inputfield-small_a";
  }
}

function eingabefeld_med (name, zustand_blur) {
  //alert (name);
  if (zustand_blur == 1) {
	  //document.formular[name].style.backgroundColor="#00FF00";
	  document.Formular[name].className="form-inputfield-med";
  } else if (zustand_blur == 0) {
	  //document.formular[name].style.backgroundColor="#0000FF";
	  document.Formular[name].className="form-inputfield-med_a";
  }
}

function eingabefeld_city (name, zustand_blur) {
  //alert (name);
  if (zustand_blur == 1) {
	  //document.formular[name].style.backgroundColor="#00FF00";
	  document.Formular[name].className="form-inputfield-city";
  } else if (zustand_blur == 0) {
	  //document.formular[name].style.backgroundColor="#0000FF";
	  document.Formular[name].className="form-inputfield-city_a";
  }
}
