// JavaScript Document

function goLite(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#485764";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#ffffff";
}

function goDim(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#ffffff";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#6a94ba";
}
