// portfolio

function setScrollBar()
{ var htmlStyle = document.getElementsByTagName('html')[0].style;
  var bodyStyle = document.body.style;
  bodyStyle.scrollbarFaceColor = htmlStyle.scrollbarFaceColor = '#5F6989';
  bodyStyle.scrollbarShadowColor = htmlStyle.scrollbarShadowColor = '#5F6989';
  bodyStyle.scrollbarHighlightColor = htmlStyle.scrollbarHighlightColor = '#5F6989';
  bodyStyle.scrollbarArrowColor = htmlStyle.scrollbarArrowColor = '#FFF';
  bodyStyle.scrollbar3dlightColor = htmlStyle.scrollbar3dlightColor = '#FFF';
  bodyStyle.scrollbarDarkshadowColor = htmlStyle.scrollbarDarkshadowColor = '#5F6989';
  bodyStyle.scrollbarTrackColor = htmlStyle.scrollbarTrackColor = '#101A3A';
}

function goLitePort(FRM,BTN) {
	window.document.forms[FRM].elements[BTN].style.color = "#333D5D";
	window.document.forms[FRM].elements[BTN].style.backgroundColor = "#DBDAE9";
	window.document.forms[FRM].elements[BTN].style.borderColor = "#DBDAE9"; }
function goDimPort(FRM,BTN) {
	window.document.forms[FRM].elements[BTN].style.color = "#DBDAE9";
	window.document.forms[FRM].elements[BTN].style.backgroundColor = "#333D5D";
	window.document.forms[FRM].elements[BTN].style.borderColor = "#DBDAE9"; }