// JavaScript Document
function goLite(BTN)
{
   document.getElementById(BTN).style.backgroundColor = "#AAAAEE";
}

function goDim(BTN)
{
   document.getElementById(BTN).style.backgroundColor = "#DDDDEE";
}
