function scrollit_r2l(seed)
{
        var msg  ="1st Clinics - A natural solution to healthcare!            A naturopathic (herbal, homeopathic, nutritional, acupuncture, & orthopathic) approach for your physiotherapy, podiatry & chiropody healthcare!.           1st Clinics - Physiotherapy, Orthopathy, Naturopathy, Acupuncture, Homeopathy, Herbal, Podiatry & Chiropody.        1st Clinics in Aberdare, Merthyr Tydfil, Aberfan, Bargoed & blackwood Areas. Click on the links to find out more.............";
        var out = " ";
        var c   = 1;

        if (seed > 100) {
                seed--;
                var cmd="scrollit_r2l(" + seed + ")";
                timerTwo=window.setTimeout(cmd,100);
        }
        else if (seed <= 100 && seed > 0) {
                for (c=0 ; c < seed ; c++) {
                        out+=" ";
                }
                out+=msg;
                seed--;
                var cmd="scrollit_r2l(" + seed + ")";
                    window.status=out;
                timerTwo=window.setTimeout(cmd,100);
        }
        else if (seed <= 0) {
                if (-seed < msg.length) {
                        out+=msg.substring(-seed,msg.length);
                        seed--;
                        var cmd="scrollit_r2l(" + seed + ")";
                        window.status=out;
                        timerTwo=window.setTimeout(cmd,100);
                }
                else {
                        window.status=" ";
                        timerTwo=window.setTimeout("scrollit_r2l(100)",75);
                }
        }
}

