/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Dave Child :: http://www.ilovejackdaniels.com/ */

// Further details can be found at:
// http://www.ilovejackdaniels.com/javascript/minimum-font-size/

function MinimumFontSize() {
  var XDivElement = document.getElementById('xdiv');
  if (XDivElement.offsetHeight < "16") {
    tags = new Array ('body', 'div', 'a', 'td', 'th', 'p', 'span', 'h1', 'h2', 'h3');
    for (j = 0; j < tags.length; j ++) {
      var getbody = document.getElementsByTagName(tags[j]).item(0);
      if (getbody) {
        getbody.style.fontSize = '10pt';
      }
    }
  }
}

window.onload=MinimumFontSize;
