function valideren(contactfrm)
{
	if (document.contactfrm.bedrijf.value=="")
	{
	alert ("Gelieve de naam van uw bedrijf in te vullen");
	document.contactfrm.bedrijf.style.backgroundColor='#FFF2E9';
	document.contactfrm.bedrijf.style.borderColor='#ff8400';
	document.contactfrm.bedrijf.focus();
	return false;
	}
	
	if (document.contactfrm.voornaam.value=="")
	{
	alert ("Gelieve uw voornaam in te vullen");
	document.contactfrm.voornaam.style.backgroundColor='#FFF2E9';
	document.contactfrm.voornaam.style.borderColor='#ff8400';
	document.contactfrm.voornaam.focus();
	return false;
	}
	
	if (document.contactfrm.naam.value=="")
	{
	alert ("Gelieve uw achternaam in te vullen");
	document.contactfrm.naam.style.backgroundColor='#FFF2E9';
	document.contactfrm.naam.style.borderColor='#ff8400';
	document.contactfrm.naam.focus();
	return false;
	}
	
	if (document.contactfrm.straat.value=="")
	{
	alert ("Gelieve uw straat in te vullen");
	document.contactfrm.straat.style.backgroundColor='#FFF2E9';
	document.contactfrm.straat.style.borderColor='#ff8400';
	document.contactfrm.straat.focus();
	return false;
	}
	
	if (document.contactfrm.huisnr.value=="")
	{
	alert ("Gelieve uw huisnummer in te vullen");
	document.contactfrm.huisnr.style.backgroundColor='#FFF2E9';
	document.contactfrm.huisnr.style.borderColor='#ff8400';
	document.contactfrm.huisnr.focus();
	return false;
	}
	
	if (document.contactfrm.postcode.value=="")
	{
	alert ("Gelieve uw postcode in te vullen");
	document.contactfrm.postcode.style.backgroundColor='#FFF2E9';
	document.contactfrm.postcode.style.borderColor='#ff8400';
	document.contactfrm.postcode.focus();
	return false;
	}
	
	if (document.contactfrm.gemeente.value=="")
	{
	alert ("Gelieve uw stad in te vullen");
	document.contactfrm.gemeente.style.backgroundColor='#FFF2E9';
	document.contactfrm.gemeente.style.borderColor='#ff8400';
	document.contactfrm.gemeente.focus();
	return false;
	}
		
	if (document.contactfrm.land.value=="")
	{
	alert ("Gelieve uw land in te vullen");
	document.contactfrm.land.style.backgroundColor='#FFF2E9';
	document.contactfrm.land.style.borderColor='#ff8400';
	document.contactfrm.land.focus();
	return false;
	}
	
	if (document.contactfrm.email.value=="")
	{
	alert ("Gelieve uw e-mail in te vullen");
	document.contactfrm.email.style.backgroundColor='#FFF2E9';
	document.contactfrm.email.style.borderColor='#ff8400';
	document.contactfrm.email.focus();
	return false;
	}
	
	if (document.contactfrm.tel.value=="")
	{
	alert ("Gelieve uw telefoonnummer in te vullen");
	document.contactfrm.tel.style.backgroundColor='#FFF2E9';
	document.contactfrm.tel.style.borderColor='#ff8400';
	document.contactfrm.tel.focus();
	return false;
	}
	
	if (document.contactfrm.bericht.value=="")
	{
	alert ("Gelieve een berichtje achter te laten");
	document.contactfrm.bericht.style.backgroundColor='#FFF2E9';
	document.contactfrm.bericht.style.borderColor='#ff8400';
	document.contactfrm.bericht.focus();
	return false;
	}
}
