﻿var min=11;
var max=17;
function increaseFontSize() {
   var p = document.getElementById('NotaInterna');
      if(p.style.fontSize) {
         var s = parseInt(p.style.fontSize.replace("px",""));
      } else {
         var s = 13;
      }
      if(s!=max) {
         s += 2;
      }
      p.style.fontSize = s+"px"
}
function decreaseFontSize() {
   var p = document.getElementById('NotaInterna');
      if(p.style.fontSize) {
         var s = parseInt(p.style.fontSize.replace("px",""));
      } else {
         var s = 13;
      }
      if(s!=min) {
         s -= 2;
      }
      p.style.fontSize = s+"px"  
}

