function goLite(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#0C5CA5";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#73B8F3";
   window.document.forms[FRM].elements[BTN].style.borderColor = "#ffffff";
}

function goDim(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#ffffff";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#0C5CA5";
   window.document.forms[FRM].elements[BTN].style.borderColor = "#ffffff";
}
