var defaultFontSize = 100;
var currentFontSize = defaultFontSize;

function revertStyles(){
  currentFontSize = defaultFontSize;
  changeFontSize(0);
  }

function changeFontSize(sizeDifference){
  currentFontSize = parseInt(currentFontSize) + parseInt(sizeDifference * 5);
  if(currentFontSize > 220) {
    currentFontSize = 220;
    }
  else if(currentFontSize < 60) {
    currentFontSize = 60;
  }
  setFontSize(currentFontSize);
  }

function setFontSize(fontSize){
  var stObj = (document.getElementById) ? document.getElementById('col1') : document.all('col1');
  stObj.style.fontSize = fontSize + '%';
  var stObj = (document.getElementById) ? document.getElementById('col3') : document.all('col3');
  stObj.style.fontSize = fontSize + '%';
  //document.body.style.fontSize = fontSize + '%';
  }
