﻿//Denna kod hämtades från: http://www.white-hat-web-design.co.uk/articles/js-fontsize.php
//Koden redigerades den 15:e oktober 2007.

var min = 10;
var max = 16;

function increaseFontSize() {
   var p = document.getElementsByTagName('div');

   for(i=0;i<p.length;i++) {
      var s;

      if(p[i].style.fontSize) {
         s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         s = 11;
      }

      if(s!=max) {
         s += 1;
      }

      p[i].style.fontSize = s+"px"
   }
}

function decreaseFontSize() {
   var p = document.getElementsByTagName('div');

   for(i=0;i<p.length;i++) {
        var s;
      if(p[i].style.fontSize) {
         s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         s = 11;
      }

      if(s!=min) {
         s -= 1;
      }

      p[i].style.fontSize = s+"px"
   }   
}