 var scrtxt = "BIKANERGUIDE WELCOMES YOU !!!"
  var length = scrtxt.length;
  var width = 150;
  var pos = -(width + 2);
  function scroll() {
   pos++;
    var scroller = "";
     if (pos == length) {
       pos = -(width + 2);
      }
  
  if (pos < 0)   { for (var i =  1; i <= Math.abs(pos); i++)
   { scroller =  scroller +  " ";}
      scroller = scroller +   scrtxt.substring(0, width- i   + 1);  
    } else
    { 
	scroller = scroller +scrtxt.substring(pos, width  + pos);
     } 
    window.status = scroller;
    setTimeout("scroll()", 100);
    } 
