function Go(x) {
   window.location.href = x;
 }

function chkFormular()
{
    if(document.Formular.author.value == "")  {
   alert("Bitte trage deinen Namen ein!");
   document.Formular.author.focus();
   return false;
   }

   if(document.Formular.email.value == "")  {
   alert("Bitte trage deine E-mailadresse ein!");
   document.Formular.email.focus();
   return false;
   }

   if(document.Formular.comment.value == "")  {
   alert("Bitte hinterlasse uns eine Nachricht!");
   document.Formular.comment.focus();
   return false;
   }
}

