step=5; 
timer=null;

function move(d){ 
	document.getElementById("Acontent").scrollTop +=(d==0?-step:step) 
	timer=setTimeout("move("+d+")",64) 
} 

function clear_move(){ 
	clearTimeout(timer) 
}
