function contactFormSubmit() {
		
		if ($('contactname').value != '' && $('contactphone').value != '' && $('contactemail').value != '' && $('contactmessage').value != '') {
			var mySendRequest = new Ajax('/modules/mod_contactform/ajax-send-contactform.php', {
				postBody: 	{	
						'contactsalutation': $('contactsalutation').value,
						'contacttitle': $('contacttitle').value,
						'contactname': $('contactname').value,
						'contactcompany': $('contactcompany').value,
						'contactstreet': $('contactstreet').value,
						'contactzip': $('contactzip').value,
						'contacttown': $('contacttown').value,
						'contactemail': $('contactemail').value,
						'contactphone': $('contactphone').value,
						'contacttype': $('contacttype').value,
						'contactsubject': $('contactsubject').value,
						'contactmessage': $('contactmessage').value
						}
						
			}).request();
			var myFx = new Fx.Style('mod_contactform', 'opacity');
			myFx.start(1,0).chain(function() {;
					$('mod_contactform').setHTML('<table width="550" height="100%" border="0"><tr><td align="left" valign="center"><span style="color:#00376B">Vielen Dank f&uuml;r Ihre Nachricht, wir werden uns umgehend um Ihr Anliegen bem&uuml;hen!<br />Ihr Scheinecker-Team!</span></td></tr></table>');
			var myFx2 = new Fx.Style('mod_contactform', 'opacity');
			myFx2.start(0,1);
			});
			
		} else {
			
			showerrorbox();
		
		}
		
		
	}
	
	
	function showerrorbox() {
		
		var myFx = new Fx.Style('errorbox', 'opacity');
		myFx.start(0,0.9);		
	}
		
	function hideerrorbox() {
		var myFx = new Fx.Style('errorbox', 'opacity');
		myFx.start(0.9,0);
	}

