﻿/* TEXT RESIZE FUNCTIONS */

function textMakeNormal()
{
    document.getElementById('divContent_Body_Inner_Text').style.fontSize='100%'
}
function textMakeBigger()
{
    document.getElementById('divContent_Body_Inner_Text').style.fontSize='150%'
}
function textMakeBiggest()
{
    document.getElementById('divContent_Body_Inner_Text').style.fontSize='200%'
}
