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