var statuswords = "eTaxCanada - Canadian tax preparation and filing system";
var speed = 100;
var control = 1;
function set_status()
{
  if (control == 1)
    {
      window.status=statuswords;
      control=0;
    }  
  else
    {
      window.status=statuswords;
      control=1;
    }
  setTimeout("set_status()",speed);
}

