  var FontSize = 100;
  function fontSizeChange(s){
    if(s==0){
      document.body.style.fontSize="100%";
      FontSize = 100;
    }else{
      document.body.style.fontSize= (FontSize + s) + "%";
      FontSize += s;
    }
  }