function movstar(a,time){
	movx=setInterval("mov("+a+")",time)
	}
function movover(){
	clearInterval(movx)
	}
function mov(a){
	scrollx=new_date.document.body.scrollLeft
	scrolly=new_date.document.body.scrollTop
	scrolly=scrolly+a
	new_date.window.scroll(scrollx,scrolly)
	}
function movestar(a,time){
	movex=setInterval("move("+a+")",time)
	}
function moveover(){
	clearInterval(movex)
	}
function move(a){
	scrollx=links.document.body.scrollLeft
	scrolly=links.document.body.scrollTop
	scrolly=scrolly+a
	links.window.scroll(scrollx,scrolly)
	}
