<!-- 
/* 
Text box marquee by Dave Methvin, Windows Magazine - May be used/modified if credit line is retained 
http://www.javascriptkit.com/script/cut3.shtml
*/
ScrollSpeed = 250
ScrollChars = 1
function ScrollMarquee() {
	window.setTimeout('ScrollMarquee()',ScrollSpeed);
	var msg = document.tickertape.tape.value; 
	document.tickertape.tape.value = msg.substring(ScrollChars) + msg.substring(0,ScrollChars); 
	} 
ScrollMarquee()
//-->

