<!-- Beginning of SCROLLING BANNER -------------------



/* 

   Original code (C)1996 Web Integration Systems, Inc. DBA Websys, Inc.

   All Rights Reserved.  This code can be re-used or modified, if credit

   is given in the source code.



   Chris Skinner, January 30, 1996.

   

   Modified by QuickByte Productions, July 16, 1998 

  

   Disclaimer:  We will not be held responsible for any unwanted effects

   due to the usage of this applet or any derivative.  No warrantees for

   usability for any specific application are given or implied.



*/



function scrollit_r2l(seed)

{



  

				var m1  = "Guide proven maps of Utah's Green River... ";

        var m2  = "...also the Montana Bighorn River and the Upper Colorado...";

        var m3  = "...high resolution, print from any PC...";

        var m4  = "...includes mile markers, fishing holes, named runs...";

        var m5  = "...plus access points, campgrounds and more...";

        var m6  = "...don't come to the river without them!";

        

        var msg=m1+m2+m3+m4+m5;

        var out = " ";

        var c   = 1;



        if (seed > 100) {

                seed--;

                var cmd="scrollit_r2l(" + seed + ")";

                timerTwo=window.setTimeout(cmd,100);

        }

        else if (seed <= 100 && seed > 0) {

                for (c=0 ; c < seed ; c++) {

                        out+=" ";

                }

                out+=msg;

                seed--;

                var cmd="scrollit_r2l(" + seed + ")";

                    window.status=out;

                timerTwo=window.setTimeout(cmd,100);

        }

        else if (seed <= 0) {

                if (-seed < msg.length) {

                        out+=msg.substring(-seed,msg.length);

                        seed--;

                        var cmd="scrollit_r2l(" + seed + ")";

                        window.status=out;

                        timerTwo=window.setTimeout(cmd,100);

                }

                else {

                        window.status=" ";

                        timerTwo=window.setTimeout("scrollit_r2l(100)",75);

                }

        }

}

// -- End of JavaScript code -------------- -->

