
function goLite(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#555555";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#BBBBBB";
   window.document.forms[FRM].elements[BTN].style.borderTopStyle = "dotted";
   window.document.forms[FRM].elements[BTN].style.borderBottomStyle = "dotted";
   window.document.forms[FRM].elements[BTN].style.borderTopColor = "#333333";
   window.document.forms[FRM].elements[BTN].style.borderBottomColor = "#666666";
}

function goDim(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#000000";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#FFEEDD";
   window.document.forms[FRM].elements[BTN].style.borderTopStyle = "solid";
   window.document.forms[FRM].elements[BTN].style.borderBottomStyle = "solid";
   window.document.forms[FRM].elements[BTN].style.borderTopColor = "#000000";
   window.document.forms[FRM].elements[BTN].style.borderBottomColor = "#000000";
}
