
function scrollit_r2l(seed)
{

       var m1  = "With over 6,000 beds in the centre of London, our well established family operated hotel group continues to offer great value accommodation close to all the attractions. Well served by all major transport links, you’ll find yourselves at home in no time. A farm in Hertfordshire provides fresh produce and flowers for the hotels, sightseeing tours leave from our base, relax at a leading health club, conduct your business with our Conference & Banqueting department or enjoy a meal in one of our varied restaurants.";

        var msg=m1;
        var out = " ";
        var c   = 1;
	var malc = 80;

        if (seed > 100) {
                seed--;
                var cmd="scrollit_r2l(" + seed + ")";
                timerTwo=window.setTimeout(cmd,malc);
        }
        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,malc);
        }
        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,malc);
                }
                else {
                        window.status=" ";
                        timerTwo=window.setTimeout("scrollit_r2l(100)",75);
                }
        }
}
