	function scrollNews()
	{
		viewPos1 = (viewPos1 - toMove);
		viewPos2 = (viewPos2 - toMove);
		if ((divWidth - textWidth) + viewPos1 < start2) { if (viewPos2 < viewPos1) { viewPos2 = divWidth-2; }}
		if ((divWidth - textWidth) + viewPos2 < start2) { if (viewPos1 < viewPos2) { viewPos1 = divWidth-2; }}
		theDiv.style.left = viewPos1 + "px";
		theDiv2.style.left = viewPos2 + "px";
		scrollMove = setTimeout('scrollNews()', viewSpeed);
	}
	function startScroller(newsDiv)
	{
		theDiv = getObject(newsDiv+'b');
		txtWidth(theDiv);
		getObject(newsDiv+'a').style.width = divWidth + "px";
		theDiv2 = getObject(newsDiv+'c');
		theDiv2.innerHTML = theDiv.innerHTML;
		scrollStart = setTimeout('scrollNews()', 2500);
	}
	function stopScroller()
	{
		clearTimeout(scrollStart);
		clearTimeout(scrollMove);
	}
	function getObject(id)
	{
		var strObj
		if (document.all) {
			strObj = document.all.item(id);
		}else if (document.getElementById) {
			strObj = document.getElementById(id);
		}
		return strObj;
	}
	function txtWidth(obj)
	{
		if (obj.offsetWidth) {
			textWidth = obj.offsetWidth;
		}else if (window.getComputedStyle) {
			textWidth = document.defaultView.getComputedStyle(obj,"").getPropertyValue("width")
			textWidth = eval(textWidth.substring(0,textWidth.indexOf("p")))
		}
		divWidth = ((textWidth > 492) ? 510 : textWidth + 60);
	}

