

	function scroll(speed) {
		parent.midframe.scrollBy(0,speed);
		startscroll();
	}

	function setspeed(speed) {
		thespeed = speed*2;
	}

	function startscroll() {
		if (thespeed!=0) {
			setTimeout('scroll(thespeed)',10);
		}
	}
