// Process the document info used in the footervar myURL = document.location.href;// Get the part of the URL that comes after "/fsd/"myURL = myURL.substring(myURL.indexOf("/fsd") + 5);// Get the document mod datevar myMod = new Date(document.lastModified);if ( Date.parse(myMod) > 0) {	mon = new Array("jan", "feb", "mar", "apr", "may", "jun", "jul", "aug", "sep", "oct", "nov", "dec");	myMod = "last updated: " + mon[myMod.getMonth()] + " " + myMod.getDate() + ", " + (1900 + myMod.getYear()) ;} else {	myMod = "fsd on the web since sep 1999";}function write_footer() {	document.write('<tr>');	document.write('<td align=center><font face="Verdana, Helvetica, Sans Serif" size=2>');	document.write('<p><B>fsd: ' + document.title); 	document.write('</B><br>a project of the <br>');	document.write('<A HREF="http://www.mcli.dist.maricopa.edu/">maricopa center for learning &amp; instruction</A><br>');	document.write('<A HREF="http://www.maricopa.edu/">maricopa community colleges</A><p>');	document.write('the \'net connection at MCLI is <A HREF="http://www.mcli.dist.maricopa.edu/alan/">Alan Levine</A><BR>');	esc_url = escape(document.location.href);	document.write('Questions? Comments? Visit our <B><A HREF="http://www.mcli.dist.maricopa.edu/feedback/index.php?url=' + esc_url + '">feedback center</A></B><BR>');	document.write('<p>http://www.mcli.dist.maricopa.edu/fsd/' + myURL);	document.write('<br>' + myMod);	document.write('<p></td></tr>');}