// Banner.js
<!-- This is your typical scrolling banner! 
// -->

var id,pause=0,position=0,revol=9;
function banner()
	{
	var i,k;
	var msg=" .           Please note that my email address has changed due to the demise of Arrive.com website.";
	var speed=10;
	document.thisform.thisbanner.value=msg.substring(position,position+60);
	if(position++==msg.length)
		{
		if (revol--
		< 2) return;
		position=0;
		}
	id=setTimeout("banner()",1000/speed);
	}
