<!--
function clrBar(line,face)
		{
		with(document.body.style)
			{
			scrollbarDarkShadowColor=line;
			scrollbar3dLightColor=line;
			scrollbarArrowColor="#CC6600";
			scrollbarBaseColor=face;
			scrollbarFaceColor=face;
			scrollbarHighlightColor=face;
			scrollbarShadowColor=face;
			scrollbarTrackColor="#003300";
			}
		}
function setcolor()
		{
		var w = document.body.clientWidth;
		var h = document.body.clientHeight;
		var x = event.clientX;
		var y = event.clientY;
		if(x>w) clrBar("#CC6600","#FFFFFF"); // Colors of active state
		else clrBar("#CC6600","#FFFFFF"); // Colors of normal state
		}
if (document.all){
clrBar(null,null);
document.onmousemove=setcolor;
}
-->
