<!--
function verScroll(dst,spd,lp) {
	scrolltimer=null;
	speed=spd;
	loop=lp;
	dest=dst;
	if (loop==true) {
		dest.scrollBy(0,speed);
		scrolltimer = setTimeout("verScroll(dest,speed,loop)", 1);
	}
}

function stopScroll() {
	loop=false;
	clearTimeout(scrolltimer);
}
//-->
