function valideren(doorstuurfrm)
{
	

	if (document.doorstuurfrm.collega.value=="")
	{
	alert ("Gelieve het e-mailadres in te vullen.");
	document.doorstuurfrm.collega.style.backgroundColor='#eeffd7';
	document.doorstuurfrm.collega.style.borderColor='#8cc63e';
	document.doorstuurfrm.collega.focus();
	return false;
	}
	

	
	if (document.doorstuurfrm.frm_captcha.value=="")
	{
	alert ("Gelieve de code over te tikken.");
	document.doorstuurfrm.frm_captcha.style.backgroundColor='#eeffd7';
	document.doorstuurfrm.frm_captcha.style.borderColor='#8cc63e';
	document.doorstuurfrm.frm_captcha.focus();
	return false;
	}
	
	if (document.doorstuurfrm.frm_captcha.value != "")
	{
	var captchavalue = (document.doorstuurfrm.frm_captcha.value);
	var spamvalue = (document.doorstuurfrm.spamcode.value);
		if(spamvalue != captchavalue){
		alert ("Gelieve de code te controleren.");
		document.doorstuurfrm.frm_captcha.style.backgroundColor='#eeffd7';
		document.doorstuurfrm.frm_captcha.style.borderColor='#8cc63e';
		document.doorstuurfrm.frm_captcha.focus();
		return false;
		}
	}
}
