function gallery_footer(range)
{
	with (document)
	{
		writeln("<p><center><table cellpadding='5' width='100%'>");
		writeln("<tr><td bgcolor='#e0e0e0'><font size='+1'>");

		writeln("<center><p>Back to");

		writeln("<a href=\"javascript: history.back()\">Previous Page<\/a>");

		writeln("&nbsp; ~ &nbsp;");

		writeln("<a href=\"../../auctions.htm\">Auctions</a>");
		writeln("&nbsp; ~ &nbsp;");
		writeln("<a href=\"../../index3.htm\">Karl Martz & Becky Brown</a>");


		writeln("</center>");

		writeln("</font></td></tr></table></center>");
	}
}

function wu()
{
	with (document)
	{
		writeln("<center><small>");
		writeln("(Whereabouts unknown.)</small>");
		writeln("</center>");
	}
}

function pc()
{
	with (document)
	{
		writeln("<center>");
		writeln("<small>Private collection.</small>");
		writeln("</center>");
	}
}

function auc(dollars, year)
{
	with (document)
	{
		writeln("<center><small>");
		write("Sold on ebay.com for $" + dollars);
		writeln(" in " + year + ".");
		writeln("Photography by seller, used with permission.");
		writeln("</small></center>");
	}
}

