<!--
    var scrmsg = "               Doctors' Choice for up to the minute information on the drugs you need............"; 
    var scrspacer = " "; 
    var scrpos = 0; 
    function ScrollMessage() 
    { 
        window.status = scrmsg.substring(scrpos, scrmsg.length) + scrspacer + 
            scrmsg.substring(0,scrpos); 
        scrpos++; 
        if (scrpos > scrmsg.length) scrpos = 0; 
        window.setTimeout("ScrollMessage()", 150); 
    } 

    ScrollMessage(); 

    var msg=" - DoctorsChoice.co.uk - information on the drugs you need and where to buy them online ";
    var speed=200;

    function ScrollTitle() {
        document.title=msg;
        msg=msg.substring(1,msg.length)+msg.charAt(0);
        setTimeout("ScrollTitle()",speed);
    }
    ScrollTitle();
    //-->
 
