<!--
var Default = 2;
var tags    = new Array('div','td','tr');
var sizing  = new Array('8px','10px','small','14px','16px','18px','20px');

function FontChange(target,tarF) {
  if (!document.getElementById) return
  var dore = document,tarS = null,fontSize = Default,value,su,cTags;fontSize += tarF;
  if (fontSize < 1) fontSize = 1;
  if (fontSize > 4) fontSize = 4;
  Default = fontSize;
  if (!(tarS = dore.getElementById(target))) tarS = dore.getElementsByTagName(target)[0];
  tarS.style.fontSize = sizing[fontSize];
  for (value = 0 ; value < tags.length ; value++) {
    cTags = tarS.getElementsByTagName(tags[value]);
    for (su = 0 ; su < cTags.length ; su++) cTags[su].style.fontSize = sizing[fontSize];
  }
}
//-->