

        //scroller width
        var swidth=160;

        //scroller height
        var sheight=120;

        //background color
        var sbcolor='#000000';

        //scroller's speed
        var sspeed=1;

        var msg='';

        //Your messages go below:


        msg +=
        
            '<ul><li><span>Mon September 8th,  2008</span></li>'+
            '<li><a href="http://www.axis.com/corporate/press/pressrelease.php?pl=Mzc3ODkz&f=aHR0cDovL2ZlZWQubmUuY2lzaW9uLmNvbS9jbGllbnQvYXhpcy8vQ29tbWFuZHMvRmlsZS5hc3B4P2lkPTg2MDM0OQ==" target="_blank" title="">Austrias largest chain installs Axis Camera solution !</a></li>'+
            '<li> </li></ul>'+                     

            '<ul><li><span>Friday August 22nd,  2008</span></li>'+
            '<li><a href="" target="_blank" title="">Ghanas foremost manufacturer of Electrical Cables installs Axis Camera solution from Data4rce to improve security and boost productivity !</a></li>'+
            '<li> </li></ul>'+              

            '<ul><li><span>Tuesday 9th September,  2008</span></li>'+
            '<li><a href="" target="_blank" title="">Farmacia goes into Administration!!!!! !</a></li>'+
            '<li> </li></ul>'+   

            '<ul><li><span>Tuesday 8th July,  2008</span></li>'+
            '<li><a href="http://www.axis.com/corporate/press/pressrelease.php?pl=MzY2NTcx&f=aHR0cDovL2ZlZWQubmUuY2lzaW9uLmNvbS9jbGllbnQvYXhpcy8vQ29tbWFuZHMvRmlsZS5hc3B4P2lkPTgzNzUwMw==" target="_blank" title="">Axis AB: Half-year report January-June 2008 - Continued successful expansion!</a></li>'+
            '<li> </li></ul>'+ 
            
             '<ul><li><span>Tuesday 3rd July,  2008</span></li>'+
            '<li><a href="http://www.axis.com/corporate/press/pressrelease.php?pl=MzY1Nzgw&f=aHR0cDovL2ZlZWQubmUuY2lzaW9uLmNvbS9jbGllbnQvYXhpcy8vQ29tbWFuZHMvRmlsZS5hc3B4P2lkPTgzNTgzOQ==" target="_blank" title="">Axis is opening new offices in China and Brazil!</a></li>'+
            '<li> </li></ul>'+             

            '<ul><li><span>Monday 12th May,  2008</span></li>'+
            '<li><a href="http://www.axis.com/corporate/press/industry_news/article.php?article=080512_p1311.htm" target="_blank" title="">Axis announces another high-performance network camera with H.264 compression !</a></li>'+
            '<li> </li></ul>'+               
              
          '';

          //End of your messages
          // Begin the ticker code

          var resumesspeed=sspeed
          
          function start()
          {
              alert("Boo");
          }
          
          function Konstructor()
          {
                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()
          }
          }

