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

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