var min=100;
var max=200;

function increaseFontSize() {
var p = document.getElementById('entry');
      if(p.style.fontSize) {
         var s = parseInt(p.style.fontSize.replace("%",""));
      } else {
         var s = 100;
      }
      if(s!=max) {
         s += 20;
      }
      p.style.fontSize = s+"%"
}

function decreaseFontSize() {
var p = document.getElementById('entry');
      if(p.style.fontSize) {
         var s = parseInt(p.style.fontSize.replace("%",""));
      } else {
         var s = 100;
      }
      if(s!=min) {
         s -= 20;
      }
      p.style.fontSize = s+"%"
}
