// Footer js to determine and write copyright year on page

var time = new Date();
var year = time.getYear();
if (year < 2000) { year = year + 1900; }

document.write("<small><br><br>Website Technical Support for comments and questions: <a href='mailto:lhall@mrl.ucsb.edu'>Linda Hall, lhall@mrl.ucsb.edu</a><br>");
document.write("&copy Copyright " + year + ", MRFN.  All rights reserved.</small>");
