        //scroller width
        var swidth=240;

        //scroller height
        var sheight=100;

        //background color
        var sbcolor='#ffffff';

        //scroller's speed
        var sspeed=2;

        var msg=''

        //Your messages go below:


        msg +=

'<p><small>25 February 2010</small><BR>'+
'<a href="APC_at_DIA_Feb_25_2010.pdf">Press Release: APCER Pharma (Europe) Ltd to Demonstrate Market-Leading Pharmacovigilance and Regulatory Services Expertise at 22nd Annual DIA EuroMeeting</a></p>'+
''+
'<p><small>08 February 2010</small><BR>'+
'<a href="http://www.businesswire.com/news/home/20100208005130/en/APCER-Pharma-Announces-LPC-Pharma-Group-Outsource">Press Release: LPC Pharma Group to Outsource Pharmacovigilance/Drug Safety to APCER</a></p>'+
''+
'<p><small>14 January 2010</small><BR>'+
'<a href="CrescentPharma_APCPressRelease_14Jan2010.pdf">Press Release: APC Pharmaceuticals & Chemicals (Europe) Ltd to Provide Pharmacovigilance Solutions to Crescent Pharma Limited</a></p>'+
''+
'<p><small>23 December 2009</small><BR>'+
'<a href="http://www.centerwatch.com/news-resources/clinical-trials-today/headline-details.aspx?HeadlineID=787">Recommended Reading: SaaS and Pharmacovigilance - A Vital Partnership</a></p>'

+  
            

        '';

        //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 += 0;
                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 += 0;
                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()
                }
        }
