// JavaScript Document
// Text Size
var fSize      = 1;
var fontSize   = 11;
function stSetObj() {
        stObj = (document.getElementById) ? document.getElementById('textsize') : document.all('textsize');
}
function stTBgr() {
        fontSize += 1;
        if (fSize == 1) {
                if (fontSize > 16) fontSize = 16;
        }
        else {
                if (fontSize > 19) fontSize = 19;       // +3px for the serif font
        }
        stSetObj();
        stObj.style.fontSize = fontSize + 'px';
}
function stTSmr() {
        fontSize -= 1;
        if (fSize == 1) {
                if (fontSize < 9) fontSize = 9;
        }
        else {
                if (fontSize < 12) fontSize = 12;       // +3px for the serif font
        }
        stSetObj(); 
        stObj.style.fontSize = fontSize + 'px';
}



