function valideren(contactfrm)
{

	if (document.contactfrm.frm_bedrijf.value=="")
	{
	alert ("Gelieve de naam van uw bedrijf in te vullen.");
	document.contactfrm.frm_bedrijf.style.backgroundColor='#fff2c4';
	document.contactfrm.frm_bedrijf.style.borderColor='#f6861f';
	document.contactfrm.frm_bedrijf.focus();
	return false;
	}
	
	if (document.contactfrm.frm_voornaam.value=="")
	{
	alert ("Gelieve uw voornaam in te vullen.");
	document.contactfrm.frm_voornaam.style.backgroundColor='#fff2c4';
	document.contactfrm.frm_voornaam.style.borderColor='#f6861f';
	document.contactfrm.frm_voornaam.focus();
	return false;
	}
	
	if (document.contactfrm.frm_naam.value=="")
	{
	alert ("Gelieve uw naam in te vullen.");
	document.contactfrm.frm_naam.style.backgroundColor='#fff2c4';
	document.contactfrm.frm_naam.style.borderColor='#f6861f';
	document.contactfrm.frm_naam.focus();
	return false;
	}
	
	if (document.contactfrm.frm_email.value=="")
	{
	alert ("Gelieve uw e-mailadres in te vullen.");
	document.contactfrm.frm_email.style.backgroundColor='#fff2c4';
	document.contactfrm.frm_email.style.borderColor='#f6861f';
	document.contactfrm.frm_email.focus();
	return false;
	}
	
	if (document.contactfrm.frm_email2.value=="")
	{
	alert ("Gelieve nogmaals uw e-mailadres in te vullen.");
	document.contactfrm.frm_email2.style.backgroundColor='#fff2c4';
	document.contactfrm.frm_email2.style.borderColor='#f6861f';
	document.contactfrm.frm_email2.focus();
	return false;
	}
	
	if ((document.contactfrm.frm_email.value) != (document.contactfrm.frm_email2.value))
	{
	alert ("De e-mailadressen komen niet overeen. Gelieve dit aan te passen.");
	document.contactfrm.frm_email.style.backgroundColor='#fff2c4';
	document.contactfrm.frm_email.style.borderColor='#f6861f';
	document.contactfrm.frm_email2.style.backgroundColor='#fff2c4';
	document.contactfrm.frm_email2.style.borderColor='#f6861f';
	document.contactfrm.frm_email.focus();
	return false;
	}
	
	if (document.contactfrm.frm_tel.value=="")
	{
	alert ("Gelieve uw telefoonnummer in te vullen.");
	document.contactfrm.frm_tel.style.backgroundColor='#fff2c4';
	document.contactfrm.frm_tel.style.borderColor='#f6861f';
	document.contactfrm.frm_tel.focus();
	return false;
	}
	
	if (document.contactfrm.frm_bericht.value=="")
	{
	alert ("Gelieve een berichtje na te laten.");
	document.contactfrm.frm_bericht.style.backgroundColor='#fff2c4';
	document.contactfrm.frm_bericht.style.borderColor='#f6861f';
	document.contactfrm.frm_bericht.focus();
	return false;
	}
	
	if (document.contactfrm.frm_captcha.value=="")
	{
	alert ("Gelieve de code over te tikken.");
	document.contactfrm.frm_captcha.style.backgroundColor='#fff2c4';
	document.contactfrm.frm_captcha.style.borderColor='#f6861f';
	document.contactfrm.frm_captcha.focus();
	return false;
	}
	
	if (document.contactfrm.frm_captcha.value != "")
	{
	var captchavalue = (document.contactfrm.frm_captcha.value);
	var spamvalue = (document.contactfrm.spamcode.value);
		if(spamvalue != captchavalue){
		alert ("Gelieve de code te controleren.");
		document.contactfrm.frm_captcha.style.backgroundColor='#eeffd7';
		document.contactfrm.frm_captcha.style.borderColor='#8cc63e';
		document.contactfrm.frm_captcha.focus();
		return false;
		}
	}
}
