// bwd

function setScrollBar()
{ var htmlStyle = document.getElementsByTagName('html')[0].style;
  var bodyStyle = document.body.style;
  bodyStyle.scrollbarFaceColor = htmlStyle.scrollbarFaceColor = '#3F7A86';
  bodyStyle.scrollbarShadowColor = htmlStyle.scrollbarShadowColor = '#3F7A86';
  bodyStyle.scrollbarHighlightColor = htmlStyle.scrollbarHighlightColor = '#3F7A86';
  bodyStyle.scrollbarArrowColor = htmlStyle.scrollbarArrowColor = '#E3D501';
  bodyStyle.scrollbar3dlightColor = htmlStyle.scrollbar3dlightColor = '#FFF';
  bodyStyle.scrollbarDarkshadowColor = htmlStyle.scrollbarDarkshadowColor = '#3F7A86';
  bodyStyle.scrollbarTrackColor = htmlStyle.scrollbarTrackColor = '#114C58';
}

function goLiteBwd(FRM,BTN) {
	window.document.forms[FRM].elements[BTN].style.color = "#466D85";
	window.document.forms[FRM].elements[BTN].style.backgroundColor = "#FFF";
	window.document.forms[FRM].elements[BTN].style.borderColor = "#466D85"; }
function goDimBwd(FRM,BTN) {
	window.document.forms[FRM].elements[BTN].style.color = "#FFF";
	window.document.forms[FRM].elements[BTN].style.backgroundColor = "#466D85";
	window.document.forms[FRM].elements[BTN].style.borderColor = "#466D85"; } 