﻿var min_chi=80; //min allow font size
var max_chi=110; //mix allow font size
function increaseFontSize_chi() {
   var p = document.getElementsByTagName('body');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("%",""));
      } else {
         var s = 90;
      }
      if(s!=max_chi) {
         s += 10;
      }
      p[i].style.fontSize = s+"%"
   }
}
function decreaseFontSize_chi() {
   var p = document.getElementsByTagName('body');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("%",""));
      } else {
         var s = 90;
      }
      if(s!=min_chi) {
         s -= 10;
      }
      p[i].style.fontSize = s+"%"
	  //
   }   
}