/*  This script manipulates the Status Line at the bottom left corner
    of the browser.

*/
<!--
var yourwords = "Now Searching flash.....";
var speed = 250;
var control = 0;
function flash()
{
  if (control == 0)
    {
      window.status=yourwords;
      control=1;
    }  
  else
    {
      window.status="";
      control=0;
    }
  setTimeout("flash();",speed);
}

var arStatusLines = new Array();
var bolRotate = false;

function ChangeStatus(strLine)	{
	bolRotate = false;
	window.status = strLine;
}

function RotateStatus(Lines, intSpeed)	{
	bolRotate = true;
	arStatusLines = Lines;

	RepeatChange(intSpeed);
}

function RepeatChange(intSpeed)	{
	if (bolRotate)	{
		window.status = arStatusLines[control];
	
		if (control == arStatusLines.length - 1)	{
			control = 0;
		}
		else	{
			control++;
		}
	
		setTimeout("RepeatChange( " + intSpeed + ")", intSpeed);
	}
}
// -->
