// JavaScript Document
function goLite(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#000066";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#FFFFFF";
   window.document.forms[FRM].elements[BTN].style.borderColor = "#000066";
}

function goDim(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#888888";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#FFFFFF";
   window.document.forms[FRM].elements[BTN].style.borderColor = "#BBBBBB";
}

