//This script creates a dynamic footer for all nwpotters.org web pages
//The document title, modification date, and location are all inserted

document.write('<p>');
document.write('<font face="Verdana, Arial, Helvetica" size="1">');

//NWP info and links
document.write ('<A STYLE="font size:8pt" HREF="http://nwpotters.org/index.html" target="_parent">');
document.write ('home</A><BR>');
document.write ('comments: ');
document.write ('<A STYLE="font size:8pt" HREF="/mailto.html">webmaster</A><BR>');

//This is where we write the modification date
document.write('Last modified: ' + document.lastModified);

//This is where we write the document URL
document.write ('<BR>URL: ' + document.location + '<BR>');
document.write ('</font></p>');
