function validateMail(){
    if(document.mailform.name.value==""){
        window.alert("Vul uw naam in alstublieft!");
		document.mailform.name.focus();
        return false;
    }
	if(!document.mailform.mail.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi)){
        window.alert("Vul uw geldige e-mail adres in alstublieft!");
		document.mailform.mail.focus();
        return false;
    }
	 if(document.mailform.phone.value==""){
        window.alert("Vul uw telefoonnummer in alstublieft!");
		document.mailform.phone.focus();
        return false;
    }

	 if(document.mailform.msg.value==""){
        window.alert("Kan geen lege e-mail verzenden, typ uw bericht in het berichtveld.");
		document.mailform.msg.focus();
        return false;
    }
    return ;
}
