<!-- Footer script
// This script prints footer information
// and closes the main table
// This script should be loaded in at the end 
// of each of the department web pages.

// 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=\"dept_homepage.html\">Home</A> | ");
			document.writeln("<A HREF=\"news/news.html\">News</A> | ");
			document.writeln("<A HREF=\"info.html\">Info</A> | ");
			document.writeln("<A HREF=\"program.html\">Program</A> | ");
			document.writeln("<A HREF=\"research.html\">Research</A> | ");
			document.writeln("<A HREF=\"people.html\">People</A> | ");
			document.writeln("<A HREF=\"majors.html\">For Majors</A> | ");
			document.writeln("<A HREF=\"links.html\">Links</A> | ");
			document.writeln("<A HREF=\"http://physics.dickinson.edu/sps\">SPS</A> | ");
			document.writeln("<A HREF=\"http://www.dickinson.edu/~astro\">Astro</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 -->

