// Java Document
 
         //scroller width
        var swidth=595;

        //scroller height
        var sheight=200;

        //background color
        var sbcolor='#cc9900';

        //scroller's speed
        var sspeed=3;

        var msg='<hr>'



        //Your messages go below:


        msg +=
		
            '<ul><li>Mark your calendar for the</li>'+
            '<li>2012 New England Regional ICORE Championship, May 20, 2012  <span style="color: red; font-size: 14pt"><a href="http://www.downzero.com/monsonicore/2012_New_England_Regional_ICORE_Championship_Entry_form.pdf">Application for NER ICORE Championship</a></span></li>'+
            '<li> </li>'+
            '<li><a href="smithwesson/Schedule2012.pdf">The 2012 S&W Defensive Pistol League IDPA Match schedule is out.  Starting in 2012 the Saturday match will be on the third Saturday of the month.</a></li></ul><hr />'+ 
			
			'<ul><li><a href="http://necpl.com/allmatches.html">Sunday March 4, 2011</a></li>'+
            '<li><a href="http://necpl.com/allmatches.html">Northeast Combat Pistol League IDPA Match</a> &mdash; <span style="color: red; font-size: 14pt"></span></li>'+
            '<li> </li></ul>'+ 

			'<ul><li><a href="http://www.downzero.com/smithwesson.php">Thursday March 8, 2011</a></li>'+
            '<li><a href="http://www.downzero.com/smithwesson.php">S &amp; W Defensive Pistol League IDPA Match</a> &mdash; <span style="color: red; font-size: 14pt"></span></li>'+
            '<li> </li></ul>'+ 
			
			'<ul><li><a href="http://www.wprclub.com/calendar/2012-03">Saturday March 10, 2012</a></li>'+
            '<li><a href="http://www.wprclub.com/calendar/2012-03">Worcester IDPA Match</a> &mdash; <span style="color: red; font-size: 14pt"></span></li>'+
            '<li> </li></ul>'+ 
			
			'<ul><li><a href="http://www.downzero.com/monson_icore.php">Sunday March 18, 2012</a></li>'+
            '<li><a href="http://www.downzero.com/monson_icore.php">Monson ICORE Match</a> &mdash; <span style="color: red; font-size: 14pt">ICORE</span></li>'+
            '<li> </li></ul>'+ 
			
			'<ul><li><a href="http://www.matchreg.com/schedule.html">Saturday April 7, 2012</a></li>'+
            '<li><a href="http://www.matchreg.com/schedule.html">Matchreg Match</a> &mdash; <span style="color: red; font-size: 14pt">Hartford Gun Club</span></li>'+
            '<li> </li></ul>'+ 

			
        '';

        //End of your messages
        // Begin the ticker code

        var resumesspeed=sspeed
        function start() {
                if (document.all) iemarquee(ticker);
                else if (document.getElementById)
                        ns6marquee(document.getElementById('ticker'));
        }
        
        function iemarquee(whichdiv){
                iediv=eval(whichdiv)
                sheight += 50;
                iediv.style.pixelTop=sheight
                iediv.innerHTML=msg 
                sizeup=iediv.offsetHeight
                ieslide()
        }
        
        function ieslide(){
                if (iediv.style.pixelTop>=sizeup*(-1)){
                        iediv.style.pixelTop-=sspeed
                        setTimeout("ieslide()",100)
                }
                else{
                        iediv.style.pixelTop=sheight
                        ieslide()
                }
        }
        
        function ns6marquee(whichdiv){
                ns6div=eval(whichdiv)
                sheight += 50;
                ns6div.style.top=sheight + "px";
                ns6div.innerHTML=msg
                sizeup=ns6div.offsetHeight
                ns6slide()
        }
        function ns6slide(){
                if (parseInt(ns6div.style.top)>=sizeup*(-1)){
                        theTop = parseInt(ns6div.style.top)-sspeed
                        ns6div.style.top = theTop + "px";
                        setTimeout("ns6slide()",100)
                }
                else {
                        ns6div.style.top = sheight + "px";
                        ns6slide()
                }
        }




