﻿// JScript File
    function getMA()
    {
		var query = window.location.search.substring(1);
		var parms = query.split('&');
		for (var i=0; i<parms.length; i++) 
		{var pos = parms[i].indexOf('=');
			if (pos > 0) 
			{ 
				if ( parms[i].substring(0,pos) == "ma" )
				{
					mitarbeiter = parms[i].substring(pos+1);
					break;
				}
			}
		}
	}
 function chkFormular()
    {
     if(document.contactform.service.value == "")  {
       alert("Bitte wählen Sie einen Betreff!");
       document.contactform.service.focus();
       return false;
      }
     if(document.contactform.detail.value == "")  {
       alert("Bitte geben Sie an, woran Sie interessiert sind!");
       document.contactform.detail.focus();
       return false;
      }
      if(document.contactform.frage.value == "")  {
       alert("Bitte geben Sie Ihr Anliegen ein!");
       document.contactform.frage.focus();
       return false;
      }
      if(document.contactform.email.value == "")  {
       alert("Bitte geben Sie Ihre Emailadresse ein!");
       document.contactform.email.focus();
       return false;
      }
     if(document.contactform.attention.value == "")  {
       alert("Bitte geben an, wie Sie auf uns aufmerksam geworden sind!");
       document.contactform.service.focus();
       return false;
      }

      if(mitarbeiter > "")
        document.contactform.ma.value = mitarbeiter
      else
        document.contactform.ma.value = 'arthur';
}
