var min=10;
var max=18;
function increaseFontSize() {
	var x;
	x = incFontSize(document.getElementsByTagName('p'));
	x = incFontSize(document.getElementsByTagName('li'));
	x = incFontSize(document.getElementsByTagName('td'));
}
function incFontSize(p) {
   // var p = document.getElementsByTagName('p');
   var s;
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         s = 12;
      }
      if(s<max) {
         s += 1;
      }
      p[i].style.fontSize = s+"px";
   }
   return true;
}
function decreaseFontSize() {
	var x;
	x = decFontSize(document.getElementsByTagName('p'));
	x = decFontSize(document.getElementsByTagName('li'));
	x = decFontSize(document.getElementsByTagName('td'));
}
function decFontSize(p) {
   // var p = document.getElementsByTagName('p');
   var s;
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         s = 12;
      }
      if(s>min) {
         s -= 1;
      }
      p[i].style.fontSize = s+"px";
   }   
   return true;
}