function WriteHeader(pageTitle, numlevels)
{
	var path = new String;
	var title = new String;

	if (pageTitle.length > 0)
	{
		title = pageTitle;
		expr = /Harrier Software Solutions/g;
		title = title.replace(expr, "Sports Management Associates");
	}
	else
		title = "Sports Management Associates, Inc";

	// Build the path string to the number of levels to go up.
	for (level = 0; level < numlevels; ++level)
		path = path + "../";

	document.write('<center>');
	document.write('<h1>');
	document.write(title);
	document.write('</h1>');
	document.write('<em>Formerly Harrier Software Solutions, LLC</em>');
	document.write('</center>');
}

