<!--
//Text box marquee by Dave Methvin,
//Windows Magazine
//May be used/modified if credit line is
//retained
ScrollSpeed = 150
ScrollChars = 1
//alert(document.getElementById('news').innerHTML);
function ScrollMarquee() {
	window.setTimeout('ScrollMarquee()',ScrollSpeed);

	var msg = document.getElementById('news').value;
	document.getElementById('news').value = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
//	var msg = document.getElementById('news').innerHTML;
//	document.getElementById('news').innerHTML = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
}
ScrollMarquee()
//-->
