// JavaScript Document
function chkFormular() {

  if (document.Formular.surename.value == "") {
	  alert("Bitte geben Sie Ihren Namen an.");
	  document.Formular.surename.focus();
	  return false;
	  }
   
   if (document.Formular.nachricht.value == "") {
	   alert("Bitte geben Sie Ihre Nachricht ein.");
	   document.Formular.nachricht.focus();
	   return false;
	   }

   if (document.Formular.contact_via.value == "") {
	   alert("Bitte geben Sie die Art der Kontaktaufnahme am.");
	   document.Formular.nachricht.focus();
	   return false;
	   }
   
   return true;

 }