// 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);
  }
  return (true);
}