var pos=100;

function Scroll() {
	if(!document.getElementById) return;
	obj=document.getElementById("thetext");
	pos -=1;
	//if(pos<0-obj.offsetHeight+130) return;
	if(pos<0-obj.offsetHeight+100){pos=70;}

	obj.style.top=pos;
	
	window.setTimeout("Scroll();",90);

}
window.onload=Scroll;
//obj.style.top=100;
//pos=100;