

var waittime=  80

function objheight(){
strobjheight=dataobj.offsetHeight
if (strobjheight==0)
setTimeout("objheight()",50)
else
objscroll()
}

function intscr(){
dataobj=document.all? document.all.rssmove : document.getElementById("rssmove")
dataobj.style.top="50px"
setTimeout("objheight()", 50)
}

function objscroll(){
dataobj.style.top=parseInt(dataobj.style.top) -1 +"px"
if (parseInt(dataobj.style.top)<strobjheight*(-1))
dataobj.style.top= "50px"
setTimeout("objscroll()",waittime)
}

if (window.addEventListener)
window.addEventListener("load", intscr, false)
else if (window.attachEvent)
window.attachEvent("onload", intscr)
else
window.onload=intscr


