<!-- hide me
var slides = true;

function thumbs_header()
{
	document.writeln("<TABLE CELLSPACING=0 BORDER=0 CELLPADDING=2 WIDTH=630>");
	document.writeln("<TR>");
	document.writeln('<TD WIDTH=4>&nbsp;</TD>');
	document.writeln('<TD class="header" WIDTH=510>');
	document.writeln("<P>");
	document.writeln("<B><FONT SIZE=5>");
	document.writeln(main_title);
	if (main_date.length > 0)
		document.writeln(" | ");
	document.writeln("</FONT></B>" + main_date + "<BR><FONT SIZE=-1>");
	document.writeln(main_caption);
	document.writeln("</FONT></P>");
	document.writeln('</TD>');
	document.writeln('<TD class="header" WIDTH=120 VALIGN="TOP">');
	document.writeln('<P ALIGN="RIGHT"><FONT SIZE=-1><A HREF="' + relative_home() + '../index.html" TARGET="_top">home</A><BR>');
	if (contents.length > 0 && slides == true)
	{
		document.writeln('<A HREF="show.html?photo=1">slide show</A>');
	}
	else
	{
		document.writeln('&nbsp;');
	}
	document.writeln('</FONT></P></TD>');
	document.writeln('</TR><TR><TD>&nbsp;</TD></TR>');
	document.writeln('</TABLE>');
}

function thumbs_content()
{
	for (var loop = 0; loop < contents.length;)
	{
		document.writeln('<TABLE CELLSPACING=0 BORDER=0 CELLPADDING=2 WIDTH=630>');
		document.writeln('<TR>');
		document.writeln('<TD WIDTH=4>&nbsp;</TD>');
		thumbnail(loop);
		loop += 2;
		document.writeln('<TD WIDTH=14>&nbsp;</TD>');
		if (loop < contents.length)
		{
			thumbnail(loop);
			loop += 2;
		}
		else
		{
			document.writeln('<TD WIDTH=75 HEIGHT=75>&nbsp;</TD>');
			document.writeln('<TD WIDTH=219>&nbsp;</TD>');
		}
		document.writeln('</TR>');
		document.writeln('</TABLE>');
		document.writeln('<BR>');
	}
}

function thumbs_footer()
{
	document.writeln('<TABLE CELLSPACING=0 BORDER=0 CELLPADDING=0 WIDTH=630>');
	document.writeln('<TR>');
	document.writeln('<TD WIDTH=8>&nbsp;</TD>');
	document.writeln('<TD WIDTH=306 class="footer">');
	document.writeln('<P ALIGN="LEFT"><FONT SIZE=-1><A HREF="' + relative_home() + '../index.html" TARGET="_top">home</A></FONT></P>');
	document.writeln('</TD>');
	document.writeln('<TD WIDTH=316 class="footer">');
	document.writeln('<P ALIGN="RIGHT"><FONT SIZE=-1>');
	if (contents.length > 0 && slides == true)
	{
		document.writeln('<A HREF="show.html?photo=1">slide show</A>');
	}
	else
	{
		document.writeln('&nbsp;');
	}
	document.writeln('</FONT></P>');
	document.writeln('</TD>');
	document.writeln('</TR>');
	document.writeln('</TABLE>');
}
// end hide -->
