var min=0.65;
var max=0.85;
function increaseFontSize() {
   var p = document.getElementsByTagName('body');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseFloat(p[i].style.fontSize.replace("em",""));
      } else {
         var s = 0.75;
      }
      if(s!=max) {
         s += 0.05;
      }
      p[i].style.fontSize = s+"em"
   }
}
function decreaseFontSize() {
   var p = document.getElementsByTagName('body');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseFloat(p[i].style.fontSize.replace("em",""));
      } else {
         var s = 0.75;
      }
      if(s!=min) {
         s -= 0.05;
      }
      p[i].style.fontSize = s+"em"
   }   
}