
function check_values_nieuwsbrief() {

 if (document.form_nieuwsbrief.naam.value == '') {
  window.alert("U dient uw naam in te vullen\n");
  return false;
 } else if (document.form_nieuwsbrief.email.value == '') {
  window.alert("U dient uw e-mailadres in te vullen\n");
  return false;
 } else {
  return true;
 }

}
