function scrollmessage(count) {

var m1 = "If the women don't find you handsome, they should at least find you handy";
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);
      }
   }

}

//