<!-- Footer script
// This script prints footer information
// and closes the main table

// Determine date file was last modified
			var lastmoddate=document.lastModified;

// Write footer information
 			document.writeln("<BR> ");
			document.writeln("<hr align=\"center\" width=\"90%\" size=\"2\" color=\"#969696\"> ");
			document.writeln("<P ALIGN=\"CENTER\"><SMALL><FONT SIZE=\"-1\"> ");
			document.writeln("<A HREF=\"sps_homepage.html\">SPS Home</A> &nbsp |&nbsp ");
			document.writeln("<A HREF=\"sps_local.html\">Local</A> &nbsp |&nbsp ");
			document.writeln("<A HREF=\"sps_members.html\">Members</A> &nbsp |&nbsp ");
			document.writeln("<A HREF=\"sps_events.html\">Events</A> &nbsp |&nbsp ");
			document.writeln("<A HREF=\"sps_news.html\">News</A> &nbsp |&nbsp ");
			document.writeln("<A HREF=\"sps_research.html\">Research</A> &nbsp |&nbsp ");
			document.writeln("<A HREF=\"sps_links.html\">Links</A> ");
			document.writeln("</FONT></SMALL></P> ");
			document.writeln("<P ALIGN=\"CENTER\"><SMALL><FONT SIZE=\"-2\"> ");
			document.writeln("This page was last updated on ");

// lastmoddate
			if(lastmoddate == ""){
				document.writeln("<SMALL><FONT SIZE=\"-2\">"+"Unknown</FONT></SMALL>");
			}else{
				document.writeln("<SMALL><FONT SIZE=\"-2\">"+lastmoddate+"</FONT></SMALL>");
			}

// webmaster info
			document.writeln("</FONT></SMALL><BR> ");
			document.writeln("<SMALL><FONT SIZE=\"-2\"> ");
			document.writeln("Comments and suggestions should be sent to the ");
			document.writeln("<A HREF=\"mailto:driscoll@dickinson.edu\"> ");
			document.writeln("Dickinson SPS webmaster</A>.<BR> ");
			document.writeln("</FONT></SMALL></P> ");

// finish table
		document.writeln(" </TD> ");
	document.writeln(" </TR> ");
document.writeln(" </TABLE> ");

document.writeln(" </BODY> ");

// end of script -->

