
var min=8;
var max=18;


function increaseFS () {
	increaseFontSize('p');
	increaseFontSize('h1');
	increaseFontSize('h4');
	increaseFontSize('h3');
	increaseFontSize('bdo');
	}
	
function decreaseFS () {
	decreaseFontSize('p');
	decreaseFontSize('h1');
	decreaseFontSize('h4');
	decreaseFontSize('h3');
	decreaseFontSize('bdo');
	}


function increaseFontSize(tag) {
	ns = 12;
	if(tag == 'h1') ns = 24;
	if(tag == 'h3') ns = 14;

   var p = document.getElementsByTagName(tag);
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = ns;
      }
      if(s!=max) {
         s += 1;
      }
      p[i].style.fontSize = s+"px"
   }
}
function decreaseFontSize(tag) {
	ns = 12;
	if(tag == 'h1') ns = 24;
	if(tag == 'h3') ns = 14;
	
   var p = document.getElementsByTagName(tag);
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = ns;
      }
      if(s!=min) {
         s -= 1;
      }
      p[i].style.fontSize = s+"px"
   }   
}
