function validate() {
	if (document.contact.first_name.value == "") {
		alert("Vul uw voornaam in.");
		return false;
	} else if (document.contact.last_name.value == "") {
		alert("Vul uw achternaam in.");
		return false;
	} else if (document.contact.street.value == "") {
		alert("Vul uw adres in.");
		return false;
	} else if (document.contact.zipcode.value == "") {
		alert("Vul uw postcode in.");
		return false;
	} else if (document.contact.city.value == "") {
		alert("Vul uw woonplaats in.");
		return false;
	} else if (document.contact.country.value == "") {
		alert("Kies uw land.");
		return false;
	} else if (document.contact.phone.value == "") {
		alert("Vul uw telefoonnummer in.");
		return false;
	} else if (document.contact.email.value == "") {
		alert("Vul uw e-mailadres in.");
		return false;
	} else if (!document.contact.agree.checked) {
		alert("U dient aan te geven dat u akkoord gaat met de voorwaarden.");
		return false;
	}
	return true;
}
