<!--
  var max = 115
  var min = 70

  function upSize() {
    size = parseInt(document.getElementById("body").style.fontSize);

    if (size != max) {
      size = size + 15;
    }

    document.getElementById("body").style.fontSize = size + "%";
	window.status = "Font size changed to " + size + "%";
  }

  function downSize() {
    size = parseInt(document.getElementById("body").style.fontSize);
    if (size != min) {
    size = size - 15;
  }

  document.getElementById("body").style.fontSize = size + "%";
  window.status = "Font size changed to " + size + "%";
  }




-->