function scroll(seed){
     var msg  = "Welcome to this website, this is a directory to business in your area.                                We offer Free and Linking Option advertising to businesses in the UK. ";
     var out   = " "
     var i     = 1
       
     if (seed > 100) {
          seed--;
          var cmd  = "scroll(" + seed + ")";
          timerTwo = window.setTimeout(cmd,100);
     }
     else if (seed <= 100 && seed > 0) {
          for (i = 0 ; i < seed ; i++) {
               out += " ";
          }
          out += msg;
          seed--;
          var cmd = "scroll(" + 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(" + seed + ")";
               window.status=out;
               timerTwo=window.setTimeout(cmd,100);
          }
          else {
               window.status=" ";
               timerTwo=window.setTimeout("scroll(100)",75);
          }
     }
 }
