function scroll_status (seed)
  { var msg = "Welcome to The Official Website of Hubli Dharwad Municipal Corporation.";
    var out = "";
    var c = 2;
    if (150 < seed)
      { seed--;
        var cmd="scroll_status(" + seed + ")";
        timerTwo = window.setTimeout(cmd, 75);							}
    else
      if (seed <= 150 && 0 < seed)
        { for (c=0 ; c < seed ; c++)
            { out+=" "; }
          out+=msg;
          seed--;
          var cmd="scroll_status(" + seed + ")";
          window.status=out;
          timerTwo=window.setTimeout(cmd,75);							}
      else
        if (seed <= 0)
          {  if (-seed < msg.length)
              { out+=msg.substring(-seed,msg.length);
                seed--;
                var cmd="scroll_status(" + seed + ")";
                window.status=out;
                timerTwo=window.setTimeout(cmd,75);						}
            else
              { window.status=" ";
                timerTwo=window.setTimeout("scroll_status(150)",75);	}	}	}


