var currentState = 1;
function swapFontSize()
  {
    if(currentState == 1) {
      increaseFontSize(); currentState = 0; }
    else
    { decreaseFontSize(); currentState = 1; }
  }
function increaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      p[i].style.fontSize = "14px"
   }
   var p = document.getElementsByTagName('h1');
   for(i=0;i<p.length;i++) {
      p[i].style.fontSize = "28px"
   }
   var p = document.getElementsByTagName('h2');
   for(i=0;i<p.length;i++) {
      p[i].style.fontSize = "20px"
   }
   var p = document.getElementsByTagName('h3');
   for(i=0;i<p.length;i++) {
      p[i].style.fontSize = "16px"
   }
}
function decreaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      p[i].style.fontSize = "11px"
   }
   var p = document.getElementsByTagName('h1');
   for(i=0;i<p.length;i++) {
      p[i].style.fontSize = "20px"
   }
   var p = document.getElementsByTagName('h2');
   for(i=0;i<p.length;i++) {
      p[i].style.fontSize = "18px"
   }
   var p = document.getElementsByTagName('h3');
   for(i=0;i<p.length;i++) {
      p[i].style.fontSize = "14px"
   }
}
        
