<!--
/*---For 3D scrollbars. Colors: line1 - #660099, line2 - #cc99ff, face1 - #ccccff, face2 - #330099*/
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) clrBar("#7e3b1e","#7e3b1e"); // Colors of active state
		else clrBar("#fce9d8","#fce9d8"); // Colors of normal state
		}
if (document.all){
clrBar(null,null);
document.onmousemove=setcolor;
}
-->
