Notice the scrolling message at the bottom!


Insert this code into your head ( <head>Insert in between here</head> )

<script language="JavaScript">
<!-- Hide the script from old browsers --
function scrollit(seed)
{
   var m1  =  " THIS IS WHERE YOUR MESSAGE GOES  ";
   var msg=m1;   var out = " ";
   var c = 0;

   if (seed > 100)
     {
     seed--;
     var cmd="scrollit(" + seed + ")";
     timerTwo=window.setTimeout(cmd,7);
     }
   else
     if (seed <= 100 && seed> 0)
       {
       for (c=0 ; c 
Now put this inside your body code.

<body onLoad="timerONE=window.setTimeout('scrollit(100)',500)">

An example is:

<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#FF0000" VLINK="#000080" ALINK="#000080" onLoad="timerONE=window.setTimeout('scrollit(100)',500)">
or
<body onLoad="timerONE=window.setTimeout('scrollit(100)',500)">



Back Go Back to Doug's JavaScript Page