incr = 0;
onetime = false;
	
function startmsg()
{
	changemsg()
}

function changemsg()
{	
	if ((incr == 0) && (bShow == false))	
	{
		incr = 1;
	}
	
	if (document.layers != undefined)
	{	
		var docOut = document.layers["NS4"].document;
		docOut.open();
		docOut.write(sText[incr]);
		document.layers["NS4"].pageX=(document.images.blankAnchor.x+4);
		document.layers["NS4"].pageY=(document.images.blankAnchor.y+3);		
		docOut.close();		
	}
	else if(document.getElementById != undefined)
	{
		document.getElementById("ALL").innerHTML = sText[incr];
	}
	else 
	{	
		document.all.All.innerHTML = sText[incr];
	}
	//get the focus on the search input tag as the above code stops accessing this field
	if (onetime == false)
	{
		document.forms[0].elements["SearchString"].focus();
		onetime = true; //set focus just once otherwise the browser runing this keeps
					//getting focus from other browsers!
	}
	window.setTimeout("changemsg();", iTimeout[incr]);

	incr++;
	if (incr==sText.length)
	{
		incr=0;
	}
}
