function validateEmailForm(form)
{	
	
	if (form.name.value== "")
	{
		alert("Vul a.u.b. uw naam in");
		return false;
		
	}
	if (form.comment.value == "")
	{
		alert("Vul a.u.b. een opmerking in");
		return false;
	}
	if (!isValidEmail(form.email.value))
	{
		alert("Vul a.u.b. een juist e-mail adres in");
		return false;
	}
	
	return true;
}
function isValidEmail(str) {

   return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
 
}

