// JavaScript Document
var min=12;
var max=18;
function increaseFontSize1() {
   var p = document.getElementsByTagName('p');
   // var li = document.getElementsByTagName('li');
   
   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 += 1;
//      }
      p[i].style.fontSize = "1.2em";
   }
 
}

function NormalSizeFont() {
   var p = document.getElementsByTagName('p');
   // var li = document.getElementsByTagName('li');
   
   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 += 1;
//      }
      p[i].style.fontSize = "1em";
   }
 
}


function increaseFontSize2() {
   var p = document.getElementsByTagName('p');
   // var li = document.getElementsByTagName('li');
   
   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 += 1;
//      }
      p[i].style.fontSize = "1.4em";
   }
 
}


