function infoscroll(seed,looped)
{
  var text1  = "God Bless America.......             Chicago Gentlemen Entertainment thanks you for visiting! Choose one of our Hot and Talented Male Strippers and Exotic Dancers for your next party, then call us for your reservation.  Office Hours:   Sun.- Thu. 9:00 AM to 10:00 PM,  Fri - Sat. 9:00 AM to Midnight";
  var text2  = "     To reserve your male strippers in Chicago and the surrounding suburbs call...   312-498-9055";        
  var msg=text1+text2;
  var putout = " ";
  var c   = 1;

  if (looped > 100) 
  {  window.status="<Thanks!>";  }
  else if (seed > 100) 
  {
     seed--;
     var cmd="infoscroll(" + seed + "," + looped + ")";
     timerTwo=window.setTimeout(cmd,100);
  }
  else if (seed <= 100 && seed > 0) 
  {
    for (c=0 ; c < seed ; c++) 
    {  putout+=" ";  }
    putout+=msg.substring(0,100-seed);  
    seed--;
    var cmd="infoscroll(" + seed + "," + looped + ")";
    window.status=putout;
    timerTwo=window.setTimeout(cmd,100);
  }
  else if (seed <= 0) 
  {
    if (-seed < msg.length) 
    {
      putout+=msg.substring(-seed,msg.length);
      seed--;
      var cmd="infoscroll(" + seed + "," + looped + ")";
      window.status=putout;
      timerTwo=window.setTimeout(cmd,100); // 100
    }
    else 
    {
      window.status=" ";
      looped += 1;
      var cmd = "infoscroll(100," + looped + ")";
      timerTwo=window.setTimeout(cmd,75); // 75
    }
  }
}

infoscroll(100,1)