// JavaScript Document to change font size
var min=16;
var max=25;
function increaseFontSize() {
   var p = document.getElementsByTagName('body');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } 
	  else {
         var s = 16;
      }
      if(s!=max) {
         s += 3;
      }
      p[i].style.fontSize = s+"px"
   }//if
}//for



function decreaseFontSize() {
   var p = document.getElementsByTagName('body');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } 
	  else {
         var s = 16;
      }
      if(s!=min) {
         s -= 3;
      }
      p[i].style.fontSize = s+"px"
   } //if  
}//for