// JavaScript Document

function goLite(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#ffffff";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#6EAF28";
   window.document.forms[FRM].elements[BTN].style.borderColor = "#427F00";
}

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";
}

function jgoLite(BTN) {
   document.getElementById(BTN).style.color = "#ffffff";
   document.getElementById(BTN).style.backgroundColor = "#6EAF28";
   document.getElementById(BTN).style.borderColor = "#427F00";
}

function jgoDim(BTN) {
   document.getElementById(BTN).style.color = "#888888";
   document.getElementById(BTN).style.backgroundColor = "#ffffff";
   document.getElementById(BTN).style.borderColor = "#BBBBBB";
}
