// CFHT web page footer script
// This programme is automaticaly appended to every outgoing document
// by the server.
//
// This could be upgraded to mail to the page author if his email is
// given in a Meta tag and using the document.anchors property.

document.writeln(
'<hr><table width=100% border=0><tr>');

document.writeln(
'<td align=left>' +
'<font size=-2>' +
'Copyright (c) CFHT. All rights reserved.' +
'<br>' +
'This page was last modified on: <B>' + 
document.lastModified + 
'</B><br>'+
'Comments to: "website at cfht.hawaii.edu"</font></td>');

document.writeln(
'<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>');

document.writeln(
'<td align=middle><font size=-2>' +
'<a href="/">Home</a>, '+
'<a href="/News/Headline.html">News</a>, '+
'<a href="/ObsInfo/">Observing</a>, '+
'<a href="/Science/">Science</a>, <br>'+
'<a href="/HawaiianStarlight/">Images</a>, '+
'<a href="/Outreach/outreach.html">Outreach</a>, '+
'<a href="/CFHT/OurUsers.html">OurUsers</a>');
document.writeln(
'</font></td></tr></table><hr>');

// End of footer.js
