function LastModDate() {
	var mnth = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
	var lastMod = new Date(document.lastModified);
	var modDate = lastMod.getDate() + "-";
	modDate += mnth[lastMod.getMonth()] + "-";
	modDate += lastMod.getFullYear();
	return(modDate);
}

document.writeln('<html>');
document.writeln('<br>');
document.writeln('<div align=center>');
document.writeln('<div class=\"littlesmaller\">');
document.writeln('<a href=\"welcome.html\">Home</a> | ');
document.writeln('<a href=\"about.html\">About</a> | ');
document.writeln('<a href=\"documents.html\">Documents | ');
document.writeln('<a href=\"news.html\">Press | ');
document.writeln('<a href=\"develop.html\">Development | ');
document.writeln('<a href=\"links.html\">Links | ');
document.writeln('<a href=\"contact.html\">Contact | ');
document.writeln('<a href=\"mailto:contact@moorpool.org.uk?subject=Moorpool Estate\">e-mail </a>');
document.writeln('<hr color=#006600 width = 700>');
document.writeln('<table cellspacing=5 border=0><tr>');
document.writeln('</tr></table>');
document.writeln('<table width=700 border=0><tr>');
document.writeln('<td width=350><div class=\"evensmaller\">Last page update: '+LastModDate()+'</td>');
document.writeln('<td width=350 align=right><div class=\"evensmaller\">Web design by <a href=\"http://www.ahackett.co.uk\" target=\"_blank\">Andrew Hackett</a>');
document.writeln('</td></tr></table>');
document.writeln('</html>');

