	function fctControle(theForm)
	{
		
		
		if(theForm.voornaam.value.length < 1)
		  {
			alert("gelieve uw voornaam in te vullen");
			theForm.voornaam.focus();
			theForm.voornaam.select();
			return (false);
		  }
		  
		if(theForm.naam.value.length < 1)
		  {
			alert("gelieve uw naam in te vullen");
			theForm.naam.focus();
			theForm.naam.select();
			return (false);
		  }

	  if(theForm.email.value.length < 1)
		  {
			alert("gelieve uw emailadres in te vullen");
			theForm.email.focus();
			theForm.email.select();
			
			return (false);
		  }
		 
		  if(theForm.email.value.length > 0)
		  {
			return fctControleEmail();
		  }
		return (true);	
	}
	


