<!--
var min=9;
var max=16;
function increaseFontSize(txt) {
   var p = document.getElementById(txt);

      if(p.style.fontSize) {
         var s = parseInt(p.style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=max) {
         s += 1;
      }
      p.style.fontSize = s+"px"
  
}
function decreaseFontSize(txt) {
   var p = document.getElementById(txt);
      if(p.style.fontSize) {
         var s = parseInt(p.style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=min) {
         s -= 1;
      }
      p.style.fontSize = s+"px"

}
