function movstar(a,time){
	movx=setInterval("mov("+a+")",time)
	}
function movover(){
	clearInterval(movx)
	}
function mov(a,isLeft){
	scrollx=new_date.document.body.scrollLeft
	scrolly=new_date.document.body.scrollTop
	scrollx+=(isLeft)?(-a):(a);
	new_date.window.scroll(scrollx,scrolly)
	}

