function goLite(BTN)
{
   $(BTN).style.color = "#ffffff";
   //window.document.forms[FRM].elements[BTN].style.color = "#ffffff";
   $(BTN).style.backgroundColor = "#051630";
   //window.document.forms[FRM].elements[BTN].style.backgroundColor = "#051630";
   $(BTN).style.borderColor = "#051630";
  // window.document.forms[FRM].elements[BTN].style.borderColor = "#051630";
}

function goDim(BTN)
{
   $(BTN).style.color = "";
   //window.document.forms[FRM].elements[BTN].style.color = "";
   $(BTN).style.backgroundColor = "#40A4FD";
   //window.document.forms[FRM].elements[BTN].style.backgroundColor = "#40A4FD";
    $(BTN).style.borderColor = "#40A4FD";
   //window.document.forms[FRM].elements[BTN].style.borderColor = "#40A4FD";
}
