var tstlspeed = 50 
var tstlpause = 2000 

var tstl = new Array()

tstl[0]  = "Welcome to CDNFalconClub.com...";
tstl[1]  = "Over the next short while we will be adding more to this site...";
tstl[2]  = "";
tstl[3]  = "";
tstl[4]  = "...Stay tuned for more...";

var tstlnum = 0
var tstlpos = 0

function typeinstatus() {
if (tstlpos < tstl[tstlnum].length)
  {
  window.status = tstl[tstlnum].substring(0,++tstlpos)
  setTimeout("typeinstatus()", tstlspeed)
  }
  else
  {
  tstlpos = 0
  tstlnum++
  if (tstlnum == tstl.length) tstlnum = 0
  setTimeout("typeinstatus()", tstlpause)
  } 
}