function changeFontSize(waarde) {
   var huidig = '';
   if(document.body.style.fontSize){
      var huidig = document.body.style.fontSize;
      
   }else {
      var huidig = 80;
   }

   fontSize = parseInt(huidig);
   if(waarde == '1') {
      fontSize = parseInt(huidig) + 10;
   }
   if(waarde == '2') {
      fontSize = parseInt(huidig) - 10;
   }
   
   if(fontSize <= 50) {
      fontSize = 50;
   }
   if(fontSize >= 120) {
      fontSize = 120;
   }
   
   document.body.style.fontSize = fontSize + '%';
}

function changeFontSizeReset() {
   document.body.style.fontSize = '80%';
}
