var min=50;
var max=160;
function increaseFontSize() {
   var p = document.getElementById('columnA');
      if(p.style.fontSize) {
         var s = parseInt(p.style.fontSize.replace("%",""));
      } else {
         var s = 120;
      }
      if(s<max) {
         s += 20;
      }
      p.style.fontSize = s+"%"

	var p = document.getElementById('columnB');
      if(p.style.fontSize) {
         var s = parseInt(p.style.fontSize.replace("%",""));
      } else {
         var s = 120;
      }
      if(s<max) {
         s += 20;
      }
      p.style.fontSize = s+"%"
   
}
function decreaseFontSize() {
   var p = document.getElementById('columnA');
      if(p.style.fontSize) {
         var s = parseInt(p.style.fontSize.replace("%",""));
      } else {
         var s = 80;
      }
      if(s>min) {
         s -= 20;
      }
      p.style.fontSize = s+"%"

	var p = document.getElementById('columnB');
      if(p.style.fontSize) {
         var s = parseInt(p.style.fontSize.replace("%",""));
      } else {
         var s = 80;
      }
      if(s>min) {
         s -= 20;
      }
      p.style.fontSize = s+"%"  
}
