function thumbnail(dir,file,descrip) {
	document.write("<a href='javascript:showimage(\"" + dir + "\",\"" + file + "\",\"" + descrip + "\");'><img src='" + dir + "tn_" + file + "' alt='" + descrip + " - Click for a larger picture'></a>");
}

function showimage(dir,file,descrip) {
	document.write("<html><head><title>" + file + "</title><link rel=\"stylesheet\" type=\"text/css\" href=\"body.css\"></head><body>");
	document.write("<center><h2>" + descrip + "</h2><img src='" + dir + file + "' alt='" + file + "'><br>");
	document.write("To save this image, right-click on the image and select \"Save Picture As\".  To go back to the previous page, click below.<br><br>");
	document.write("<a href='javascript:history.go(-1);'>Back</a></center>");
	document.write("</body></html>");
}

function spacer() {
	document.write("&nbsp;");
}