



<!-- Footer script



/* 



A Script to create the navigation bar that appears across the bottom of a 

webpage. The script also adds a line of text on where comments should be sent.



*/



// creates a navigation bar that goes across the bottom of the page



 			document.writeln("<BR> ");

 			document.writeln("<UL>");

 			document.writeln("</UL>");

 			

   		 	document.writeln("<HR>");

			

			document.writeln("<P ALIGN=\"CENTER\"><SMALL><FONT SIZE=\"-1\"> ");

			document.writeln("<A HREF=\"index.html\">Home</A> | ");

			document.writeln("<A HREF=\"cv.html\">CV</A> | ");

			document.writeln("<A HREF=\"research.html\">Research</A> | ");

			document.writeln("<A HREF=\"courses.html\">Courses</A> | ");

			document.writeln("<A HREF=\"schedule.html\">Schedule</A> | ");

			document.writeln("<A HREF=\"links.html\">Links</A> ");

			document.writeln("</FONT></SMALL></P>");

			document.writeln("<HR>");

			



// creates text that tells the user when the page was last modified

			document.writeln("<P ALIGN=\"CENTER\"><SMALL><FONT SIZE=\"-2\"> ");			

			document.writeln("This page was last updated on ");



// extracts the date the file was last modified

			var lastmodified=document.lastModified;

			

// writes the date last modifed to the web page

			if(lastmodified == "")

				{

					document.writeln("<SMALL><FONT SIZE=\"-2\">"+"Unknown</FONT></SMALL>");

				}

			else

				{

					document.writeln("<SMALL><FONT SIZE=\"-2\">"+lastmodified+"</FONT></SMALL>");

				}



			document.writeln("</FONT></SMALL>");

			

// creates text that tells the user where to send any comments

			

			document.writeln("<P ALIGN=\"CENTER\"><SMALL><FONT SIZE=\"-2\"> ");

			document.writeln("Comments and suggestions should be sent ");

			document.writeln("<A HREF=\"mailto:jwilliams@wittenberg.edu\">here</A>. ");

			document.writeln("</FONT></SMALL></P>");

			

			document.writeln("<BR> ");



// end script