function checkForm()
{
	var email = document.getElementById('email');
	if(emailCheck(email, "Vul een juiste email adres in vb: naam@domein.nl"))
	{
		return true;
	}
return false;
}

//check voor email
function emailCheck(id, helperMsg)
{
  var emailExp = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/;
	if(id.value.match(emailExp))
	{
	    return true;
	}
	else
	{
	    alert(helperMsg);
	    id.focus();
	    return false;
	}
}