function checkAanmelding(form) {
 if (!checkinput('voornaam','Vul aub je voornaam in',form,type='string') ) {return false} ;
 if (!checkinput('achternaam','Vul aub je achternaam in',form,type='string') ) {return false} ;
 if (!checkinput('email','Vul aub een correct email adres in',form,type='email') ) {return false} ;
 if (!checkinput('functie','Vul aub je functie in',form,type='string') ) {return false} ;
 return true;
}

