/* Last Updated by: WRB On: 09/16/04 */

function showline(myint)
{
	var text = new String("");
	if (myint == 1)
	{
		text = " ------------------------------------ Superior Food Machinery, Inc. -------------------------------- Designer & Manufacturers of Mexican Food Equipment. ";
	}
	else
	{
		text = " ............................................................ Please fill out this form or call us toll free (800)944-0396 for assistance with your Machinery requirements";
	}
	stepline(text);
}

function stepline(usetext)
{
	var Speed=125;
	var CharNum=1;
	window.setTimeout('stepline()',Speed);
	window.status = usetext;
	usetext = usetext.substring(CharNum) + usetext.substring(0,CharNum);
}
