// JavaScript Document

var min=9;
var max=15;

function increaseFontSize() {
   var p = document.getElementById("content");
      if(p.style.fontSize) {
         var s = parseInt(p.style.fontSize.replace("px",""));
      } else {
         var s = 10;
      }
      if(s!=max) {
         s += 1;
      }
      p.style.fontSize = s+"px"
}

function decreaseFontSize() {
   var p = document.getElementById("content");
      if(p.style.fontSize) {
         var s = parseInt(p.style.fontSize.replace("px",""));
      } else {
         var s = 10;
      }
      if(s!=min) {
         s -= 1;
      }
      p.style.fontSize = s+"px"
}

function standardFontSize() {
   var p = document.getElementById("content");
      if(p.style.fontSize) {
         var s = parseInt(p.style.fontSize.replace("px",""));
      } else {
         var s = 10;
      }
         s = 10;
      p.style.fontSize = s+"px"
}


