var Default=3;
var tags = new Array('div','td','tr');
var sizing = new Array('9px','10px','11px','13px','14px','15px','16px');

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



































