<!--
/*---For 3D scrollbars. Colors: line1 - #000000, line2 - #000000, face1 - #ff0000, face2 - #ffffcc*/
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("#000000","#ff0000"); // Colors of active state
		else clrBar("#000000","#ffffcc"); // Colors of normal state
		}
if (document.all){
clrBar(null,null);
document.onmousemove=setcolor;
}
//-------- La Minh Khanh ------ //
-->
