
function status_line(x)
{
 var msg = "            Art - Agency Hammond "
            + "                                   +49 (0)911 770727";
 var out = "";
 var c = 1;
 var e = 120;
 if (x > e)
 {
  x--;
  var cmd="status_line(" + x + ")";
  timerTwo=window.setTimeout(cmd,200);
 }
 else if (x <= e && x > 0)
 {
  for (c=0 ; c < x ; c++)
  {
   out+=" ";
  }
  out+=msg;
  x--;
  var cmd="status_line(" + x + ")";
  window.status=out;
  timerTwo=window.setTimeout(cmd,200);
 }
 else if (x <= 0)
 {
  if (-x < msg.length)
  {
   out+=msg.substring(-x,msg.length);
   x--;
   var cmd="status_line(" + x + ")";
   window.status=out;
   timerTwo=window.setTimeout(cmd,200);
  }
  else
  {
   window.status=" "; 
   timerTwo=window.setTimeout("status_line("+e+")",200);
  }
 }
}
