
    function zoomin(id) {
      if (document.getElementById) {
        document.getElementById(id).style.fontSize = '120%';
      }
      else if (document.all) {
        document.all[id].style.fontSize = '120%';
      }
    }

    function zoomout(id) {
      if (document.getElementById) {
        document.getElementById(id).style.fontSize = '100%';
      }
      else if (document.all) {
        document.all[id].style.fontSize = '100%';
      }
    }
