<html>
<body onLoad = "scroll(0)" onUnload = "window.defaultStatus = ''">
<script language = "JavaScript">
<!-- Begin hiding here --
/******************************************************************
-This Status Scroll Script Was Created & ©1997-2001 Jason Schanker
(jcheetah@netutilities.com).
-The Script's Located @ http://webdesign.netutilities.com Which Has
Simple Comprehensive HTML & JavaScript Tutorials.
-http://www.netutilities.com Has *UNLIMITED FREE* Formmail, Polls,
Counters, Web Site Stats, Chat Rooms, & More On The Way.
-You May Copy This Script Freely If These Comments Remain Intact.
******************************************************************/
function scroll(n)
{
var spaces = " ";
var text = ".......Welcome to the tutorial on status bar scrolls.......Here is a sample of the script you came to obtain.......";
var scrolling_text = spaces + text;
scrolling_text=scrolling_text.substring(n,scrolling_text.length);
window.defaultStatus = scrolling_text;
if(scrolling_text.length > 0)
n++;
else
n = 0;
s = n;
n = setTimeout("scroll(s)", 100);
}
// -- End hiding here -->
</script>