function chkformular(inlang)
  {
   if(document.order.email.value == "")
    {
     if (inlang =="G")
        alert("Um Ihre Anfrage beantworten zu können, benötigen wir Ihre EMail Adresse. Bitte geben Sie diese im Feld 'Email' ein.")
     else
        if (inlang =="NL")
           alert("Wij hebben uw e-mail adres nodig om u te beantwoorden. U kunt uw e-mail adres intypen bij het vakje 'mailadres'.")
        else
           if (inlang =="S")
              alert("För att vi ska kunna svara på din förfrågan behöver vi din e-mail adress. Var god fyll i din e-mail i fältet 'Mailadres'.")
           else
              alert("To be able to reply to your enquiry we would need your email address. Please enter your email address in the array 'EMail'.")
     document.order.email.focus();
     return false;
    }
  }

function chkformularcontact(inlang)
  {
   if(document.contact.email.value == "")
    {
     if (inlang =="G")
        alert("Um Ihre Anfrage beantworten zu können, benötigen wir Ihre EMail Adresse. Bitte geben Sie diese im Feld 'Email' ein.")
     else
        if (inlang =="NL")
           alert("Wij hebben uw e-mail adres nodig om u te beantwoorden. U kunt uw e-mail adres intypen bij het vakje 'mailadres'.")
        else
           if (inlang =="S")
              alert("För att vi ska kunna svara på din förfrågan behöver vi din e-mail adress. Var god fyll i din e-mail i fältet 'Mailadres'.")
           else
              alert("To be able to reply to your enquiry we would need your email address. Please enter your email address in the array 'EMail'.")
     document.contact.email.focus();
     return false;
    }
  }

