function scrollmessage(count) { 
    var m1 = " ";
        var msg=m1;
    var out = " ";
    var c = 1; 
    if (count > 100) {
       count--;
       cmd="scrollmessage("+seed+")";
       timerTwo=window.setTimeout(cmd,100);
       } 
    else if (count <= 100 && count > 0) {
       for (c=0 ; c < count ; c++) {
          out+=" ";
          }
       out+=msg;
       count--;
       window.status=out;
       cmd="scrollmessage("+count+")";
       timerTwo=window.setTimeout(cmd,100);
       } 
    else if (count <= 0) {
       if (-count < msg.length) {
          out+=msg.substring(-count,msg.length);
          count--;
          window.status=out;
          cmd="scrollmessage("+count+")";
          timerTwo=window.setTimeout(cmd,100);
          }
       else {
          window.status=" ";
          timerTwo=window.setTimeout("scrollmessage(100)",75);
          }
       } 
    } 