function offerteformuliercontrole()
{
	naam = document.offerteform.naam.value;
	contactpersoon = document.offerteform.contactpersoon.value;
	emailadres = document.offerteform.email.value;

	if(naam == "")
		{
			alert("U bent vergeten uw (bedrijfs)naam in te vullen.");
			document.offerteform.naam.focus();
			return false;
		}
	if(contactpersoon == "")
		{
			alert("U bent vergeten contactpersoon in te vullen.");
			document.offerteform.contactpersoon.focus();
			return false;
		}
	if(emailadres == "")
		{
			alert("U bent vergeten uw emailadres in te vullen.");
			document.offerteform.email.focus();
			return false;
		}
	if (emailadres.indexOf('@') == '-1') 
		{
			alert("Emailadres is niet correct ingevuld (geen @-teken)");
			document.offerteform.email.focus();
			return false;
		}
	if (emailadres.indexOf('.') == '-1') 
		{
			alert("Emailadres is niet correct ingevuld");
			document.offerteform.email.focus();
			return false;
		}

	return true;

}		


