function chkFormular()
{
 if(document.Formular.newsName.value == "")  {
   alert("Bitte Ihren Namen eingeben!");
   document.Formular.newsName.focus();
   return false;
  }
 if(document.Formular.newsMail.value == "") {
   alert("Bitte Ihre E-Mail-Adresse eingeben!");
   document.Formular.newsMail.focus();
   return false;
  }
 if(document.Formular.newsMail.value.indexOf('@') == -1) {
   alert("Dies ist keine gültige E-Mail-Adresse!");
   document.Formular.newsMail.focus();
   return false;
  }
}

function chkDatum()
{
 if(document.ware.vondatum.value == "01.01.2007") {
   alert("Bitte geben Sie das gewünschte Mietdatum an!");
   document.ware.vondatum.focus();
   return false;
  }
 if(document.ware.bisdatum.value == "02.02.2007"){
   alert("Bitte geben Sie das gewünschte Mietdatum an!");
   document.ware.bisdatum.focus();
   return false;
  }
}