
function checkEMailValue(theElement) {
	valid = emailValidator(theElement);
	if (valid) {
		return true;
	} else {
		alert("Vul a.u.b. een geldig e-mail adres in.");
		return false;
	}
}

function emailValidator(elem) {
	var emailExp = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/;
	if (document.getElementById(elem).value.match(emailExp)) {
		return true;
	} else {
		return false;
	}
}

