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;");

		write("<a href=\"../30s/murphy.htm\">");
		write(range);
		writeln("</a>");
		writeln("&nbsp; ~ &nbsp;");

		writeln("<a href=\"../indexkm.htm\">Karl Martz Gallery</a>");
		writeln("&nbsp; ~ &nbsp;");
		writeln("<a href=\"../../index3.htm\">Karl Martz & Becky Brown</a>");

	writeln("<br><small><i>");
	writeln("All content copyright &copy;");
	writeln("<a href=\"mailto:emartz@microbio.umass.edu\">Estate of Karl Martz</a>");
	writeln("unless otherwise indicated.");
	writeln("</small>");


		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 photby(who)
{
	with (document)
	{
		writeln("<center>");
		writeln("<small>Photography by " + who + ".</small>");
		writeln("</center>");
	}
}

function auc(dollars, year)
{
	with (document)
	{
		writeln("<center><small>");
		if (dollars != "")
		{
			write("Sold for $" + dollars);
			writeln(" at ebay.com in " + year + ".");
		}
		else
			writeln("Sold in " + year + ".");
		writeln("Photography by seller, used with permission.");
		writeln("See <a href='../../auctions.htm'>Auctions</a>.");
		writeln("</small></center>");
	}
}

