function goLite(BTN)
{
 elem = document.getElementById( BTN );
 elem.style.cursor='hand';
 elem.style.color = "#6666AA";
 elem.style.backgroundColor = "#EEEEF4";
 elem.style.borderColor = "#9999DD";
}
function goDim(BTN)
{
 elem = document.getElementById( BTN );
 elem.style.color = "#330000";
 elem.style.backgroundColor = "#AAA7DA";
 elem.style.borderColor = "#ffffff";
}
