	var min=62;
	var max=89;
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("%",""));
      } else {
         var s = 62;
      }
      if (s!=max) {
         s += 9;
      }
      p[i].style.fontSize = s+"%"
   }
}
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("%",""));
      } else {
         var s = 62;
      }
      if(s!=min) {
         s -= 9;
      }
      p[i].style.fontSize = s+"%"
   }
}
function resetFontSize() {
	var p = document.getElementsByTagName('body');
	for(i=0;i<p.length;i++){
   p[i].style.fontSize = "62.5%"
   }
}
