var min=0.85;
var max=1.15;
function increaseFontSize() {
   var wrap = document.getElementById('wrap');
   
   if(wrap.style.fontSize) {
         var s = parseFloat(wrap.style.fontSize.replace("em",""));
      } else {
         var s = 1;
      }
      if(s<max) {
         s += 0.05;
      }
      wrap.style.fontSize = s+"em";
}
function decreaseFontSize() {
  var wrap = document.getElementById('wrap');
   
   if(wrap.style.fontSize) {
         var s = parseFloat(wrap.style.fontSize.replace("em",""));
      } else {
         var s = 1;
      }
      if(s>min) {
         s -= 0.05;
      }
      wrap.style.fontSize = s+"em";
}
