<!---Media's Java-Script---- --
/* Copyright (C)1996 Web Integration Systems, Inc. DBA Websys, Inc.
   All Rights Reserved.
*/

function scroll(cntr)

{
        var m1 = "MEDIA is: ";
        var m2 = "Bob McDougall, Vince Passaretti, Ralph Polinkski Jr. ";
        var m3 = "and Greg Sutton....";
        var m4 = "Inside you'll find the latest GIG DATES (and Directions), PLUS ";
        var m5 = "Videos and Photos from the shows, Fans photo section, Booking Info, ";
        var m6 = "MP3/Wave/Real Audio Sound Files from the CD, Studio and LIVE shows.    ";
        var ma = ">>>>>> MEDIAs CD - THE ONE AND ONLY - released on Jbird Records ";
        var mb = " is available at AMAZON.COM and at all of the shows!!! <<<<<<      ";

        var msg=ma+mb+m1+m2+m3+m4+m5+m6;

        var out = " ";
        var c   = 1;


        if (cntr > 100) {
                cntr--;
                var cmd="scroll(" + cntr + ")";
                timerTwo=window.setTimeout(cmd,100);
        }
        else if (cntr <= 100 && cntr > 0) {
                for (c=0 ; c < cntr ; c++) {
                        out+=" ";
                }
                out+=msg;
                cntr--;
                var cmd="scroll(" + cntr + ")";
                    window.status=out;
                timerTwo=window.setTimeout(cmd,100);
        }
        else if (cntr <= 0) {
                if (-cntr < msg.length) {
                        out+=msg.substring(-cntr,msg.length);
                        cntr--;
                        var cmd="scroll(" + cntr + ")";
                        window.status=out;
                        timerTwo=window.setTimeout(cmd,100);
                }
                else {
                        window.status=" ";
                        timerTwo=window.setTimeout("scroll(100)",75);
                }
        }
}
