var b = 0
var x = 0
var counter = 0
var n = new Array()
n[0] = ""
n[1] = ""
n[2] = ""
function typew()
{
x = x + 1
check()
window.status = n[b].substring(0, x)
if(x == n[b].length + 5)
{ 
 b = b + 1
 x = 0
}
if(b > 2)
{
b = 0
}
counter = setTimeout("typew()", 100)
}
function check()
{
if(x <= n[b].length)
  {
   if(n[b].substring(x, x + 1) == "")  
     {
     x = x + 1
     check()
     }
  }
}
