function goLite(BTN)
{
   document.getElementById(BTN).style.color = "#84C225";
   document.getElementById(BTN).style.backgroundColor = "#EEEEF4";
   document.getElementById(BTN).style.borderColor = "#84C225";
}

function goDim(BTN)
{
   document.getElementById(BTN).style.color = "#888888";
   document.getElementById(BTN).style.backgroundColor = "#EEEEEE";
   document.getElementById(BTN).style.borderColor = "#BBBBBB";
}