<!-- Hide from old browsers

    var now = new Date();
    var event = new Date("October 20 2006 21:45:00");
    var scrollMsg = "Welcome to my Javascript Scrolling Example";
    var msgSpace = "    ";
    var beginPos = 0;

    if (event<now)
    { scrollMsg = "     The M-80s... a blast from the past!                    Explosive entertainment!                    Viceroy... Venus... Mikki Stixx... Maverick... Johnny Keys... The M-80s!!!                    Book the M-80s for your next event or private party! Click on Booking Info link for information!                    "; 
    } else { scrollMsg = "     The M-80s... a blast from the past!                   *** Come see the M-80s on October 20 at Jimmy Loves in downtown San Diego from 9:45pm - 1:30am ***                    Explosive entertainment!                    Viceroy... Venus... Mikki Stixx... Maverick... Johnny Keys... The M-80s!!!                    Book the M-80s for your next event or private party! Click on Booking Info link for information!                         ";
    }
    
 function scrollingMsg() 
 
   {
   
    document.msgForm.scrollingMsg.value=scrollMsg.substring(beginPos,scrollMsg.length)+msgSpace+scrollMsg.substring(0,beginPos);
    beginPos=beginPos + 1;
    if (beginPos > scrollMsg.length)
     { beginPos = 0;}
    
    window.setTimeout("scrollingMsg()",175);
 
   }


// End hiding -->


