function checkOuderAanmeld(form) {
 if (!checkinput('achternaam','Vul aub uw naam in',form,type='string') ) {return false} ;
/* if (!checkinput('adres','Vul aub uw adres in',form,type='string') ) {return false} ;*/
 if (!checkinput('email','Vul aub een correct email adres in',form,type='email') ) {return false} ;
 if (!checkinput('postcode','Vul aub uw postcode in',form,type='string') ) {return false} ;
 if (!checkinput('woonplaats','Vul aub de plaats in',form,type='string') ) {return false} ;
 return true;
}

