var min=80;
var max=200;
function increaseMoreFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("%",""));
      } else {
         var s = 100;
      }
      if(!(s>=max)) {
         s += 8;
      }
      p[i].style.fontSize = "1.3em"
   }
}
function increaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("%",""));
      } else {
         var s = 100;
      }
      if(!(s>=max)) {
         s += 8;
      }
      p[i].style.fontSize = "1em"
   }
}
function decreaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("%",""));
      } else {
         var s = 100;
      }
      if(!(s<=min)) {
         s -= 8;
      }
      p[i].style.fontSize = "0.9em"
   }   
}

