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;");

		if (range != "")
		{
			write("<a href=\"index.htm\">19");
			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 pem(x)
{
	var xx = "";
	xx += x;
	with (document)
	{
		writeln("<center><small>");
		write("Photography by Eric Martz");
		if (xx != "undefined")
			write(" (who apologizes for the awful quality -- will re-photograph in future.)");
		writeln(".</small></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>");
	}
}

function pgm()
{
	with (document)
	{
		writeln("<center>");
		writeln("<small>Photographs copyright &copy; 2001 by");
		writeln("<a href=\"../gmarsh/gmarsh.htm\">Ginny Marsh</a>.</small>");
		writeln("</center>");
	}
}


