// Parm is (data number* 155) = half of TABLE width;
var x = 0;
var on = true;

function scrollnow(Parm) {
	limdex = Parm;
	if (on){
		if (x < limdex & x >= 0 ) {
			parent.scrollingframe.scroll(x,0);
			x = x + 1;
			setTimeout('scrollnow(limdex)', 8);
		}
		else if (x < 0) {
			x = limdex;
			scrollnow(limdex);
		}
		else {
			x=0;
			scrollnow(limdex);
		}
	}
}

