// JavaScript Document
var text = "Gospel and Musical Association,  " +
    "Nazareth,  " +
    "India-628617"; 
var length = text.length;
var width = 100;
var pos = -(width + 2);
var scrollerdelay='20' 
function scroll() {
  pos++;
  var scroller = " ";
  if (pos == length) {
    pos = -(width + 2);
  }
  if (pos > 0) {
    for (var i = 1; i <= pos; i++) {
      scroller = scroller + " ";}   
  }
  else {
    scroller = scroller + text.substring(pos, width + pos);
  }
  window.status = scroller;
  setTimeout("scroll()",scrollerdelay);
}