function scroll_r2l(seed)

{
  var m1 = "Hotel Karl Residency.    ";
  var m2 = "The finest 3 star boutique hotel in North Bombay, Close to International and Domestic Airports, Railway Station, Bus Depot.   ";
  var m3 = "Instant Online Booking, Great Prices,  Great Facilities,   International Standards   ";
  var m4 = "Contact Us : Tel: 091-22-2625 3809 / 091-22-2625 05 50, Fax : 091-22-2625 05 51 ,    ";
  var m4 = "E-mail : karlresidency@hotelkarl.com ";
  var msg=m1+m2+m3+m4;
  var out = " ";
  var c   = 1;

        if (seed > 100) {
                seed--;
                var cmd="scroll_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="scroll_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="scroll_r2l(" + seed + ")";
                        window.status=out;
                        timerTwo=window.setTimeout(cmd,100);
                }
                else {
                        window.status=" ";
                        timerTwo=window.setTimeout("scroll_r2l(100)",75);
                }
        }
}


