// JavaScript Document


var min=0.65;
var max=3.5;
function increaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseFloat(p[i].style.fontSize.replace("em",""));
      } else {
         var s = 1;
      }
      if(s!=max) {
         s += 0.1;
      }
      p[i].style.fontSize = s+"em"
   }
}

function resetFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) 
   {
      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 = parseFloat(p[i].style.fontSize.replace("em",""));
      } else {
         var s = 0.75;
      }
      if(s!=min) {
         s -= 0.1;
      }
      p[i].style.fontSize = s+"em"
   }   
}


