// JavaScript Documentfunction chkFormular()
function chkFormular()
{
if(document.form1.NName.value == '') {
   alert('Bitte Ihre Name eingeben');
   document.form1.NName.focus();
   return false;
  }
   if(document.form1.email.value == '') {
   alert('Bitte Ihre Email eingeben');
   document.form1.email.focus();
   return false;
  }
}
