function CheckInputContact(formContact)
{
 var IsValid = true;

 if (formContact.CText3.value == "")
 {
  alert("Bitte geben Sie Ihren Namen an.");
  formContact.CText3.focus();
  IsValid = false
 };

 if (formContact.CText4.value == "")
 {
  alert("Bitte geben Sie die Firma an.");
  formContact.CText4.focus();
  IsValid = false
 };
 if (formContact.CText5.value == "")
 {
  alert(unescape("Bitte geben Sie die Stra%DFe an."));
  formContact.CText5.focus();
  IsValid = false
 };
 if (formContact.CText6.value == "")
 {
  alert("Bitte geben Sie den Ort an.");
  formContact.CText6.focus();
  IsValid = false
 };
 if (formContact.CText7.value == "")
 {
  alert("Bitte geben Sie die Postleitzahl an.");
  formContact.CText7.focus();
  IsValid = false
 };
 if (formContact.CText9.value == "")
 {
  alert("Bitte geben Sie eine e-mail Adresse an.");
  formContact.CText9.focus();
  IsValid = false
 };
 if (!formContact.CText17.checked)
 {
  alert("Bitte geben Sie Ihre Zustimmung zur Speicherung Ihrer Daten.");
  formContact.CText17.focus();
  IsValid = false
 };
 return IsValid
}

