   function code_smaller(id) {
      var ist = document.getElementById(id).style.height;
      var soll = parseInt(ist)-100;
      if(soll<50) soll=parseInt(ist);
      document.getElementById(id).style.height = soll+'px';
   }

   function code_bigger(id) {
      var ist = document.getElementById(id).style.height;
      var soll = parseInt(ist)+100;
      document.getElementById(id).style.height = soll+'px';
   }

