function zoekcheck() 
{
	if (document.zoekform.zoekwoord.value!="")
	return true;
	alert("U heeft geen zoekwoord ingevuld!");
	
	
	return false;
	}
function checklengte()
{
if (document.zoekform.zoekwoord.value.length<3)
 {
 alert("Zoekwoord is te kort!")
 return false
 }
else
 {
 return true
 }
}
function nbcheck() 
{
	if (document.nbform.email.value!="")
	return true;
	alert("U heeft geen emailadres ingevuld!");
	
	
	return false;
	}