<!--
var min=8;
var max=18;
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("px",""));
      } else {
         var s = 12;
      }
      if(s!=max) {
         s += 1;
      }
      p[i].style.fontSize = s+"px"
   }
   
   var a = document.getElementsByTagName('a');
   for(j=0;j<a.length;j++) {
      if(a[j].style.fontSize) {
         var t = parseInt(a[j].style.fontSize.replace("px",""));
      } else {
         var t = 12;
      }
      if(t!=max) {
         t += 1;
      }
      a[j].style.fontSize = t+"px"
   }
   
}
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("px",""));
      } else {
         var s = 12;
      }
      if(s!=min) {
         s -= 1;
      }
      p[i].style.fontSize = s+"px"
   }   
   
   var a = document.getElementsByTagName('a');
   for(j=0;j<a.length;j++) {
      if(a[j].style.fontSize) {
         var t = parseInt(a[j].style.fontSize.replace("px",""));
      } else {
         var t = 12;
      }
      if(t!=min) {
         t -= 1;
      }
      a[j].style.fontSize = t+"px"
   }
   
}
-->