<!-- 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>");

			document.writeln("<P ALIGN=\"CENTER\"><SMALL><FONT SIZE=\"-1\"> ");

			document.writeln("<A HREF=\"abp_Homepage.html\">Home</A> | ");

			document.writeln("<A HREF=\"abp_Suite.html\">Suite</A> | ");

			document.writeln("<A HREF=\"abp_Workshops.html\">Workshops</A> | ");

			document.writeln("<A HREF=\"abp_People.html\">People</A> | ");

			document.writeln("<A HREF=\"abp_Publications.html\">Publications</A> | ");

			document.writeln("<A HREF=\"abp_Downloads.html\">Downloads</A> | ");

			document.writeln("<A HREF=\"abp_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: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 -->


