//scroller width
        var swidth=165;

        //scroller height
        var sheight=250;

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

        //scroller's speed
        var sspeed=3;

        var msg=''

        //Your messages go below:


        msg +=
        
        	'<center>'+
        
            '<ul><li><a target="_BLANK" title="New York Window Film Co. Inc. BBB Business Review" href="http://www.bbb.org/new-york-city/business-reviews/glass-coating-and-tinting/new-york-window-film-co-inc-in-farmingdale-ny-27966/#bbbonlineclick"><img alt=" New York Window Film Co. Inc. BBB Business Review" border="0" src="http://ourbbbonline2.bbb.org/NYC/BBBOnlineSeal/27966/V1/1/seal.png" width="110" /></a></li>'+
            '<li>BBB member since 2004</li>'+
            '<li><hr width="100"</li>'+
            '<li> </li></ul>'+                     
            
            '<ul><li><a href="nywindowfilm2.com" target="_blank" title=""><img src="images/energy-star.gif" width="70" /></a></li>'+
            '<li>Saving Energy since 2004</li>'+
            '<li><hr width="100"</li>'+
            '<li> </li></ul>'+  
            
            '<ul><li><a href="nywindowfilm3.com" target="_blank" title=""><img src="images/asid-ip-logo.gif" width="130" /></a></li>'+
            '<li>Member ASID NY Chapter</li>'+
            '<li><hr width="100"</li>'+
            '<li> </li></ul>'+  
            
            '<ul><li><a href="nywindowfilm4.com" target="_blank" title=""><img src="images/lia.gif" width="110" /></a></li>'+
            '<li>Long Island Assoc.</li>'+
            '<li><hr width="100"</li>'+
            '<li> </li></ul>'+  
            
            '<ul><li><a href="nywindowfilm5.com" target="_blank" title=""><img src="images/iwfa.gif" width="110" /></a></li>'+
            '<li>Int. Window Film Assoc.</li>'+
            '<li><hr width="100"</li>'+
            '<li> </li></ul>'+  
            
		'</center>'+
            
        '';

        //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()
                }
        }



