// JavaScript Document



function goLite(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#FFFFCC";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#AA0055";
   window.document.forms[FRM].elements[BTN].style.borderColor = "#FFFFCC";
}
 
function goDim(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#FFFFFF";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#DE1863";
   window.document.forms[FRM].elements[BTN].style.borderColor = "#ffffff";
}



function goLite2(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#FFFFCC";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#CC0055";
   window.document.forms[FRM].elements[BTN].style.borderTopColor = "#FFFFCC";
   window.document.forms[FRM].elements[BTN].style.borderBottomColor = "#FFFFCC";
   window.document.forms[FRM].elements[BTN].style.borderLeftColor = "#FFFFCC";
   window.document.forms[FRM].elements[BTN].style.borderRightColor = "#FFFFCC";
}

function goDim2(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#FFFFFF";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#DE1863";
   window.document.forms[FRM].elements[BTN].style.borderTopColor = "#ffffff";
   window.document.forms[FRM].elements[BTN].style.borderBottomColor = "#ffffff";
   window.document.forms[FRM].elements[BTN].style.borderLeftColor = "#ffffff";
   window.document.forms[FRM].elements[BTN].style.borderRightColor = "#ffffff";
}



