function validerennb(nbfrm)
{
	if (document.nbfrm.frm_naam.value=="")
	{
	alert ("Gelieve uw naam in te vullen.");
	document.nbfrm.frm_naam.style.backgroundColor='#fff2c4';
	document.nbfrm.frm_naam.style.borderColor='#f6861f';
	document.nbfrm.frm_naam.focus();
	return false;
	}
	
	if (document.nbfrm.frm_email.value=="")
	{
	alert ("Gelieve uw e-mailadres in te vullen.");
	document.nbfrm.frm_email.style.backgroundColor='#fff2c4';
	document.nbfrm.frm_email.style.borderColor='#f6861f';
	document.nbfrm.frm_email.focus();
	return false;
	}
	
	if (document.nbfrm.frm_email2.value=="")
	{
	alert ("Gelieve nogmaals uw e-mailadres in te vullen.");
	document.nbfrm.frm_email2.style.backgroundColor='#fff2c4';
	document.nbfrm.frm_email2.style.borderColor='#f6861f';
	document.nbfrm.frm_email2.focus();
	return false;
	}
	
	if ((document.nbfrm.frm_email.value) != (document.nbfrm.frm_email2.value))
	{
	alert ("De e-mailadressen komen niet overeen. Gelieve dit aan te passen.");
	document.nbfrm.frm_email.style.backgroundColor='#fff2c4';
	document.nbfrm.frm_email.style.borderColor='#f6861f';
	document.nbfrm.frm_email2.style.backgroundColor='#fff2c4';
	document.nbfrm.frm_email2.style.borderColor='#f6861f';
	document.nbfrm.frm_email.focus();
	return false;
	}	
		
	if (document.nbfrm.frm_captcha.value=="")
	{
	alert ("Gelieve de code over te tikken.");
	document.nbfrm.frm_captcha.style.backgroundColor='#fff2c4';
	document.nbfrm.frm_captcha.style.borderColor='#f6861f';
	document.nbfrm.frm_captcha.focus();
	return false;
	}
	
	if (document.nbfrm.frm_captcha.value != "")
	{
	var captchavalue = (document.nbfrm.frm_captcha.value);
	var spamvalue = (document.nbfrm.spamcode.value);
		if(spamvalue != captchavalue){
		alert ("Gelieve de code te controleren.");
		document.nbfrm.frm_captcha.style.backgroundColor='#eeffd7';
		document.nbfrm.frm_captcha.style.borderColor='#8cc63e';
		document.nbfrm.frm_captcha.focus();
		return false;
		}
	}
}
