function toon(inhoud){
  document.getElementById(inhoud).style.display = 'block';
}
function verberg(inhoud){
  document.getElementById(inhoud).style.display = 'none';
}
