﻿
function goLite(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#6666AA";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#EEEEF4";
   window.document.forms[FRM].elements[BTN].style.borderColor = "#9999DD";
}

function goDim(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#999999";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#EEEEEE";
   window.document.forms[FRM].elements[BTN].style.borderColor = "#BBBBBB";
}
