//This script creates a dynamic footer for AHEC web pages
//The document title, modification date, and location are all inserted

document.write('<font face="Verdana, Arial, Helvetica" color="#663366" linkcolor="#663366">');

//AHEC info and links
document.write ('Send comments to: ');
document.write ('<A HREF="mailto:ahec@ohsu.edu">ahec@ohsu.edu</A><BR>');

//This is where we write the modification date
document.write('Last modified: ' + document.lastModified);

document.write ('</font>');
