function testmyscrollbar()
{

with (document.detectform)

{

code.value='<style type="text/css">'+"\n"+'body {'+"\n"+'scrollbar-arrow-color: '+arrow.value+';'+"\n"+'scrollbar-base-color: '+base.value+";\n"+'scrollbar-dark-shadow-color: '+darkshadow.value+";\n"+'scrollbar-track-color: '+track.value+";\n"+'scrollbar-face-color: '+face.value+";\n"+'scrollbar-shadow-color: '+shadow.value+";\n"+'scrollbar-highlight-color: '+highlight.value+";\n"+'scrollbar-3d-light-color: '+light.value+";\n"+'}'+"\n"+'</style>'+"\n";
}
if (document.all)
{
 document.body.style['scrollbarArrowColor']=document.detectform.arrow.value;
 document.body.style['scrollbarBaseColor']=document.detectform.base.value;
 document.body.style['scrollbarDarkShadowColor']=document.detectform.darkshadow.value;
 document.body.style['scrollbarTrackColor']=document.detectform.track.value;
 document.body.style['scrollbarFaceColor']=document.detectform.face.value;
 document.body.style['scrollbarHighlightColor']=document.detectform.highlight.value;
 document.body.style['scrollbarShadowColor']=document.detectform.shadow.value;
 document.body.style['scrollbar3dLightColor']=document.detectform.light.value;
}
}