<!--
	ScrollSpeed = 600;
	ScrollChars = 4;
	function SetupTicker()
	{
	msg = "The Fire Investigators Association of New Zealand Incorporated (FIANZ) is a professional society for individuals involved in some way in the investigation of the origin and cause of fires, and the investigation, prosecution and suppression of arson in New Zealand.  -  "
	RunTicker();}
	function RunTicker() {
	window.setTimeout('RunTicker()', ScrollSpeed);
	window.status = msg;
	msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars); }
	SetupTicker();
//-->


