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('<TABLE CELLSPACING=0 CELLPADDING=3>');
	document.write('<TR>');
	document.write('<TD CLASS="MENU_ITEM"><A HREF="./' + path + '">Home</A> |</TD>');
	document.write('<TD CLASS="MENU_ITEM"><A HREF="./' + path + 'products">Products</A> |</TD>');
	document.write('<TD CLASS="MENU_ITEM"><A HREF="./' + path + 'services">Services</A> |</TD>');
	document.write('<TD CLASS="MENU_ITEM"><A HREF="./' + path + 'entries">Entries</A> |</TD>');
	document.write('<TD CLASS="MENU_ITEM"><A HREF="./' + path + 'results">Results</A> |</TD>');
	document.write('<TD CLASS="MENU_ITEM"><A HREF="./' + path + 'photos">Meet Photos</A> |</TD>');
	document.write('<TD CLASS="MENU_ITEM"><A HREF="./' + path + 'calendar">Calendar</A> |</TD>');
	document.write('<TD CLASS="MENU_ITEM"><A HREF="./' + path + 'contact.htm">About</A> |</TD>');
	document.write('<TD CLASS="MENU_ITEM"><A HREF="./' + path + 'jobs.htm">Jobs</A></TD>');
	document.write('</TR>');
	document.write('</TABLE>');
	document.write('</CENTER>');
	document.write('<BR>');
}
