function validateFields (){
	if ( document.frmContact.voorletters.value == '' || document.frmContact.achternaam.value == '' || document.frmContact.emailaddress.value == '' || document.frmContact.bericht.value == ''){
		alert('You need to fill in all required fields. These fields are marked with an *.');
		return false;
	}
}
