var min=12; 
var max=16; 
function increaseTagFontSize(tagName) { 
   var p = document.getElementsByTagName(tagName); 
   for(i=0;i<p.length;i++) { 
      if(p[i].style.fontSize) { 
         var s = parseInt(p[i].style.fontSize.replace("px","")); 
      } else { 
         var s = 12; 
      } 
      if(s!=max) { 
         s += 4; 
      } 
      p[i].style.fontSize = s+"px" 
   } 
} 
function decreaseTagFontSize(tagName) { 
   var p = document.getElementsByTagName(tagName); 
   for(i=0;i<p.length;i++) { 
      if(p[i].style.fontSize) { 
         var s = parseInt(p[i].style.fontSize.replace("px","")); 
      } else { 
         var s = 12; 
      } 
      if(s!=min) { 
         s -= 4; 
      } 
      p[i].style.fontSize = s+"px" 
   }    
} 
function increaseFontSize() { 
	increaseTagFontSize("p");
	increaseTagFontSize("a");
	increaseTagFontSize("ul");
	increaseTagFontSize("li"); 
	increaseTagFontSize("td");
	increaseTagFontSize("table");
	increaseTagFontSize("tr");
} 
function decreaseFontSize() { 
	decreaseTagFontSize("p");
	decreaseTagFontSize("a");
	decreaseTagFontSize("ul");
	decreaseTagFontSize("li"); 
	decreaseTagFontSize("td");
	decreaseTagFontSize("table");
	decreaseTagFontSize("tr");
} 
