<!--
//
// lastmodified.js
// (c) Paul Nicholson 2005
//
// Returns the file's last modified date from the server
// to use this script, place this command line in the html:
// <script language=Javascript" src=js/lastmodified.js></script>
//




var filesdate = document.lastModified
var d = new Date(filesdate)
//var d = new Date(filesdate+' GMT')


document.write(d.getDate() + "-" + (d.getMonth()+1) + "-" + d.getFullYear() + " ")
//document.write(d.getHours()-1 + ":" + d.getMinutes())


document.write("<br><br>")
document.write("<hr>")
document.write("<p><font size=2>Site designed and supported by <a href=http://www.impartweb.co.uk>impartweb.co.uk</a></font></p>")
//-->


