// JavaScript Document

<!-- This script posts date of last update to webpage -->
var monName = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
var updated = new Date(document.lastModified);
var now = new Date
document.write("Last Updated: " + updated.getDate() + " " + monName[updated.getMonth()] + " " + updated.getFullYear());

<!-- Contact email -->
document.writeln('<br>Please send comments to: <a href="mailto:archives@iastate.edu">archives@iastate.edu</a>');

<!-- writes URL location of webpage -->
document.writeln('<br>');
document.writeln('URL: <a href="' + location.href +'">');
document.write(location.href);
document.writeln('</a>');
document.writeln('<br>');

<!-- Copyright statement using current year -->
document.writeln('<a href="http://www.iastate.edu/guide/policies/notice.html">Copyright</a> &#169 ');
document.write(now.getFullYear());
document.writeln(' Iowa State University. All rights reserved.');