// JavaScript Document
function FrontPage_Form1_Validator(theForm)
{
  if (theForm.Name.value == "")
  {
    alert("Please fill the field \"Name\".");
    theForm.Name.focus();
    return (false);
  }
  if (theForm.Firma.value == "")
  {
    alert("Please fill the field \"Company\".");
    theForm.Firma.focus();
    return (false);
  }
  if (theForm.Strasse.value == "")
  {
    alert("Please fill the field \"Street\".");
    theForm.Strasse.focus();
    return (false);
  }
  if (theForm.PLZ.value == "")
  {
    alert("Please fill the field \"Postcode\".");
    theForm.PLZ.focus();
    return (false);
  }
  if (theForm.Ort.value == "")
  {
    alert("Please fill the field \"City\".");
    theForm.Ort.focus();
    return (false);
  }
  if (theForm.E_Mail.value == "")
  {
    alert("Please fill the field \"E-mail\".");
    theForm.E_Mail.focus();
    return (false);
  }
  if (theForm.Foerdergut.value == "")
  {
    alert("Please fill the field \"Feed Material\".");
    theForm.Foerdergut.focus();
    return (false);
  }
  if (theForm.foerderstaerke_kg_min.value == "")
  {
    alert("Please fill the field \"Feed Rate (min)\" an.");
    theForm.foerderstaerke_kg_min.focus();
    return (false);
  }
  if (theForm.foerderstaerke_kg_max.value == "")
  {
    alert("Please fill the field \"Feed Rate (max)\" an.");
    theForm.foerderstaerke_kg_max.focus();
    return (false);
  }
  if (theForm.foerderstaerke_kg_norm.value == "")
  {
    alert("Please fill the field \"Feed Rate (normal)\" an.");
    theForm.foerderstaerke_kg_norm.focus();
    return (false);
  }
  if (theForm.Aufstellung.value == "")
  {
    alert("Please fill the field \"Installation\" an.");
    theForm.Aufstellung.focus();
    return (false);
  }
  return (true);
}
