function goLite(FRM,BTN)
{
   //window.document.forms[FRM].elements[BTN].style.color = "#0000FF";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#FFFFFF";

}

function goDim(FRM,BTN)
{
   //window.document.forms[FRM].elements[BTN].style.color = "";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "";

}

