var scrht=100
var speed=1
var ht=''
var scrbox

function setscrbox()
{
	scrbox=document.getElementById? document.getElementById("innerbox") : document.all.iescroller
	scrbox.style.top=parseInt(scrht)+80+"px"
	scrbox.style.visibility="visible"
	ht=scrbox.offsetHeight
	scrtime=setInterval("scrollit()",40)
}
window.onload=setscrbox

function scrollit()
{
	if (parseInt(scrbox.style.top)>(ht*(-1)+8))
	scrbox.style.top=parseInt(scrbox.style.top)-speed+"px"
	else
	scrbox.style.top=parseInt(scrht)+80+"px"
}

