
function Footer(mod)
{
	// Boilerplate copyright and 'last modified' footer function
	var text = "";
	// Select a font a bit smaller than the user's default
	text += '<font size=-2>'
	// Add standard text
	text += 'Contents & design copyright &copy K.Dowler 2003 - ';
	text += 'Last modified: ';
	// write that bit out
	document.write (text);
	// write the date as passed from the caller
	document.write (mod);
	// set the font back to normal
	text = '</font>';
	document.write (text);
}
