// JavaScript Documentfunction changeFontSize(inc){  var p = document.getElementsByTagName('p');  for(n=0; n<p.length; n++) {    if(p[n].style.fontSize) {       var size = parseInt(p[n].style.fontSize.replace("px", ""));    } else {       var size = 14;    }    p[n].style.fontSize = size+inc + 'px';   }      var li = document.getElementsByTagName('li');  for(n=0; n<li.length; n++) {    if(li[n].style.fontSize) {       var size = parseInt(li[n].style.fontSize.replace("px", ""));    } else {       var size = 12;    }    li[n].style.fontSize = size+inc + 'px';   }  var h4 = document.getElementsByTagName('h4');  for(n=0; n<h4.length; n++) {    if(h4[n].style.fontSize) {       var size = parseInt(h4[n].style.fontSize.replace("px", ""));    } else {       var size = 12;    }    h4[n].style.fontSize = size+inc + 'px';   }          var h1 = document.getElementsByTagName('h1');  for(n=0; n<h1.length; n++) {    if(h1[n].style.fontSize) {       var size = parseInt(h1[n].style.fontSize.replace("px", ""));    } else {       var size = 15;    }    h1[n].style.fontSize = size+inc + 'px';   }          var h2 = document.getElementsByTagName('h2');  for(n=0; n<h2.length; n++) {    if(h2[n].style.fontSize) {       var size = parseInt(h2[n].style.fontSize.replace("px", ""));    } else {       var size = 10;    }    h2[n].style.fontSize = size+inc + 'px';   }             var a = document.getElementsByTagName('a');  for(n=0; n<a.length; n++) {    if(a[n].style.fontSize) {       var size = parseInt(a[n].style.fontSize.replace("px", ""));    } else {       var size = 10;    }    a[n].style.fontSize = size+inc + 'px';   }         }
