var pos=550;
function Scroll()	{
	if (!document.getElementById) return;
	obj=document.getElementById("thetext");
	pos-=1;
	if (pos < 0-obj.offsetWidth)	{
		pos=550;
					}
	obj.style.left=pos;
	window.setTimeout("Scroll();",30);

			}