<SCRIPT LANGUAGE="JavaScript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
var x = 0
var y = 0
var z = 140
var delay = 70
var text = " This is the Scrolling Banner. "
+"It is part of my collection of Javascript. "
+"If you want to make more lines to put your message on, copy this line, "
+"and be sure to not continue on with the script by pressing enter."
while (y ++ < z) {
text = " " + text
}
function scroller() {
window.status = text.substring(x++, text.length);
if (x == text.length) {
x = 0;
}
setTimeout("scroller()", delay);
}
scroller();
//-->
</SCRIPT>