
function goLite(BTN)
{
   document.getElementById(BTN).style.color = "#6666AA";
   document.getElementById(BTN).style.backgroundColor = "#EEEEF4";
   document.getElementById(BTN).style.borderColor = "#9999DD";
}

function goDim(BTN)
{
   document.getElementById(BTN).style.color = "#666666";
   document.getElementById(BTN).style.backgroundColor = "#EEEEEE";
   document.getElementById(BTN).style.borderColor = "#BBBBBB";
}
