// JavaScript Document
defaultStep=1 
step=defaultStep
stepFast=5

function scrollDivDown(id){
	clearTimeout(timerDown) 
	document.getElementById(id).scrollTop+=step 
	timerDown=setTimeout("scrollDivDown('"+id+"')",10)
} 

function scrollDivUp(id){
	clearTimeout(timerUp)
	document.getElementById(id).scrollTop-=step 
	timerUp=setTimeout("scrollDivUp('"+id+"')",10)
} 

function scrollDivDownFast(id){
	clearTimeout(timerDown) 
	document.getElementById(id).scrollTop+=stepFast
	timerDown=setTimeout("scrollDivDownFast('"+id+"')",10)
} 

function scrollDivUpFast(id){
	clearTimeout(timerUp)
	document.getElementById(id).scrollTop-=stepFast
	timerUp=setTimeout("scrollDivUpFast('"+id+"')",10)
} 

timerDown="" 
timerUp="" 

function stopMe(){
clearTimeout(timerDown) 
clearTimeout(timerUp)
}

document.onmousemove=function(){stopMe()} 
