function goLite(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#003366";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#91B1C1";
   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 = "#003366";
   window.document.forms[FRM].elements[BTN].style.borderColor = "#ffffff";
}
