function goLite(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#DDE1E7";
   window.document.forms[FRM].elements[BTN].style.borderTopColor = "#d0d0d0";
   window.document.forms[FRM].elements[BTN].style.borderBottomColor = "#ffffff";
   window.document.forms[FRM].elements[BTN].style.borderLeftColor = "#d0d0d0";
   window.document.forms[FRM].elements[BTN].style.borderRightColor = "#ffffff";
}

function goDim(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#E13A00";
   window.document.forms[FRM].elements[BTN].style.borderTopColor = "#ffffff";
   window.document.forms[FRM].elements[BTN].style.borderBottomColor = "#d0d0d0";
   window.document.forms[FRM].elements[BTN].style.borderLeftColor = "#ffffff";
   window.document.forms[FRM].elements[BTN].style.borderRightColor = "#d0d0d0";
}

function goLite_current(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#DDE1E7";
   window.document.forms[FRM].elements[BTN].style.borderTopColor = "#d0d0d0";
   window.document.forms[FRM].elements[BTN].style.borderBottomColor = "#ffffff";
   window.document.forms[FRM].elements[BTN].style.borderLeftColor = "#d0d0d0";
   window.document.forms[FRM].elements[BTN].style.borderRightColor = "#ffffff";
}

function goDim_current(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#4F7288";
   window.document.forms[FRM].elements[BTN].style.borderTopColor = "#ffffff";
   window.document.forms[FRM].elements[BTN].style.borderBottomColor = "#d0d0d0";
   window.document.forms[FRM].elements[BTN].style.borderLeftColor = "#ffffff";
   window.document.forms[FRM].elements[BTN].style.borderRightColor = "#d0d0d0";
}

