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

