<!--
/*---Active 3D scrollbars---*/
function clrBar(line,face)
		{with(document.body.style)
			{scrollbarDarkShadowColor=line;
			scrollbar3dLightColor="white";
			scrollbarArrowColor="black";
			scrollbarBaseColor=face;
			scrollbarFaceColor=face;
			scrollbarHighlightColor="white";
			scrollbarShadowColor="gray";
			scrollbarTrackColor="#F3F3F3";}}
function setcolor()
		{var w = document.body.clientWidth;
		var h = document.body.clientHeight;
		var x = event.clientX;
		var y = event.clientY;
		if(x > w | y > h) clrBar("#FFFFFF","#FDF0C4"); // Colours of active state
		    else clrBar("#FFFFFF","#6B6259"); // Colours of normal state
		}
if (document.all)	{clrBar(null,null);
					document.onmousemove=setcolor;}
//-->