<!--
function clrBar(line,face)
		{
		with(document.body.style)
			{
			scrollbarDarkShadowColor=line;
			scrollbar3dLightColor=line;
			scrollbarArrowColor="#b1004b";
			scrollbarBaseColor=face;
			scrollbarFaceColor=face;
			scrollbarHighlightColor=face;
			scrollbarShadowColor=face;
			scrollbarTrackColor="#222220";
			}
		}
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("#171715","#333331"); // Colors of active state
		else clrBar("#000000","#171715"); // Colors of normal state
		}
if (document.all){
clrBar(null,null);
document.onmousemove=setcolor;
}

//  -->
