function writeDate() {
if (document.all || document.getElementById || document.layers) {
var monthArray = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
var lastUpdate = new Date(document.lastModified);
var modifiedyear=lastUpdate.getYear()
if (modifiedyear > 98 && modifiedyear < 105) modifiedyear   += 1900;
if (modifiedyear >= 0 && modifiedyear < 6)  modifiedyear += 2000;

var footer = ""
footer += "<div align='center'><center><font size='2' face='arial'>Copyright © 2009<br>"
footer += "The Nakashima Foundation For Peace<br>"
footer += "1847 Aquetong Road<br>"
footer += "New Hope, PA 18938<br>"
footer += "<a href='mailto:info@nakashimafoundation.org'><font size='2'>info@nakashimafoundation.org</font></a><br>"
footer += "</center></div>"

document.open();
document.write(footer);
document.write(timestamp);
document.close();
}
}


