﻿function goLite(FRM, BTN) {
    window.document.forms[FRM].elements[BTN].style.color = "#FF0000";
    window.document.forms[FRM].elements[BTN].style.backgroundColor = "#FFFFEE";
    window.document.forms[FRM].elements[BTN].style.borderColor = "#000000";
}

function goDim(FRM, BTN) {
    window.document.forms[FRM].elements[BTN].style.color = "#000000";
    window.document.forms[FRM].elements[BTN].style.backgroundColor = "#FFFFFF";
    window.document.forms[FRM].elements[BTN].style.borderColor = "#FF6633";
}