var position=50;

function Scroll(){

if (!document.getElementById) return;
obj=document.getElementById("thetext");
position-=1;
if (position< 0-obj.offsetHeight) return;
obj.style.top=position;
window.setTimeout("Scroll()",35);

if (position>0 - obj.offsetHeight)return;
position=50;

}
