﻿function movstar(a,time){
	movx=setInterval("mov("+a+")",10)
}
function movover(){
	clearInterval(movx)
}
function mov(a){
	scrollx=tpl.document.body.scrollLeft
	scrolly=tpl.document.body.scrollTop
	scrollx=scrollx+a
	tpl.window.scroll(scrollx,scrolly)
}
