// JavaScript Document

function PostContact()
	{
	
		if ((document.FormContact.naam.value=="") || (document.FormContact.voornaam.value=="") || (document.FormContact.straat.value=="") || (document.FormContact.postcode.value=="") || (document.FormContact.gemeente.value=="") || (document.FormContact.land.value=="") || (document.FormContact.telefoon.value=="") || (document.FormContact.email.value==""))
		{
			alert("Gelieve alle velden in te vullen");
			return false;
		}
		else
		{
		document.FormContact.action = "contact_verzend.asp";
		document.FormContact.method = "POST";
		document.FormContact.submit();
		}
	}
	
	
function PostAdressen()
	{
	
		if ((document.FormAdressen.naam.value=="") || (document.FormAdressen.voornaam.value=="") || (document.FormAdressen.straat.value=="") || (document.FormAdressen.postcode.value=="") || (document.FormAdressen.gemeente.value=="") || (document.FormAdressen.land.value=="") || (document.FormAdressen.telefoon.value=="") || (document.FormAdressen.email.value==""))
		{
			alert("Gelieve alle velden in te vullen");
			return false;
		}
		else
		{
		document.FormAdressen.action = "contact_verzend.asp";
		document.FormAdressen.method = "POST";
		document.FormAdressen.submit();
		}
	}
