function scrollBar(line,face,theme)
{
if (!line||!face)
{
line=null;
face=null;
switch(theme) // Predefined themes
{
case "neo":
var line="#ffffff";
var face="#eeeeee";
break;
}
}

with(document.body.style)
{
scrollbarDarkShadowColor="#ffffff";
scrollbar3dLightColor=face;
scrollbarArrowColor="#000000";
scrollbarBaseColor="#fafafa";
scrollbarFaceColor=face;
scrollbarHighlightColor=face;
scrollbarShadowColor=face;
scrollbarTrackColor="#fafafa";
}
}

/*------------------[Pointer coordinates catcher]---------------*/
function colorBar(){
scrollBar('#fafafa','#eeeeee'); // Your colors
}

if (document.all){
scrollBar(null,null,"neo");
document.onmousemove=colorBar;
}
//-->

