
function resizeText(multiplier) { 

    if (document.body.style.fontSize == "") 
    { 
        document.body.style.fontSize = "1.0em"; 
    } 

    document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (multiplier * 0.2) + "em"; 
    
}

function fixedTextSize(textSize) { 

    if (document.body.style.fontSize == "") 
    { 
        document.forms[0].style.fontSize = "small"; 
    } 
   
    var hidden = document.getElementById(hiddenTextSizeID);

    if (hidden != null)
    {
        hidden.value = textSize;
    }

    document.forms[0].style.fontSize = textSize; 
    
    return false;
    
}
