<!-- Footer script
/* This file is identical to dept_footer.js with the following modifications

HREF=\" -> HREF=\"../ in all local links

*/

// 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>");
			document.writeln("<P ALIGN=\"CENTER\"><SMALL><FONT SIZE=\"-1\"> ");
			document.writeln("<A HREF=\"../wp_homepage.html\">Home</A> | ");
			document.writeln("<A HREF=\"../wp_overview.html\">Overview</A> | ");
			document.writeln("<A HREF=\"../wp_personnel.html\">Personnel</A> | ");
			document.writeln("<A HREF=\"../wp_resources.html\">Resources</A> | ");
			document.writeln("<A HREF=\"../wp_lab&equip.html\">Lab & Equip</A> | ");
			document.writeln("<A HREF=\"../wp_activities.html\">Activities</A> | ");
			document.writeln("<A HREF=\"../wp_outcomes.html\">Outcomes</A> | ");
			document.writeln("<A HREF=\"../wp_songs.html\">Songs</A> | ");
			document.writeln("<A HREF=\"../wp_FAQ.html\">FAQ</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:jacksond@dickinson.edu\"> ");
			document.writeln("physics department webmaster</A>.<BR> ");
			document.writeln("</FONT></SMALL></P> ");
			document.writeln("<BR> ");

// finish table
		document.writeln(" </TD> ");
	document.writeln(" </TR> ");
document.writeln(" </TABLE> ");

document.writeln(" </BODY> ");

// end of script -->

