// 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("/c2k") + 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 = "c2k on the web since october 1999";}function write_footer() {	document.write('<tr>');	document.write('<td align=center><font face="Verdana, Helvetica, Sans Serif" size=2>');	document.write('<p><B>c2k: ' + document.title); 	document.write('</B><br>designed and implemented by your college <br>');	document.write('<A HREF="../index.html">faculty/staff development coordinators</A><br>with assistance from the<br>');	document.write('<A HREF="http://www.mcli.dist.maricopa.edu/">maricopa center for learning &amp; instruction (mcli)</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/c2k/' + myURL);	document.write('<br>' + myMod);	document.write('<p></td></tr>');}function showphoto( pFile, caption) {	photoWin = open("","foto","width=520,height=380,status,scrollbars,resizable");	photoWin.document.write('<html><head><title>' + caption + '</title></head>');	photoWin.document.write('<body bgcolor=#FFFFFF text=#333333>');	photoWin.document.write('<center>');	photoWin.document.write('<img src="' + pFile + '" vspace="6"><br>');	photoWin.document.write('<font size=+2 face=verdana><b>' + caption + '</b></font><br>');	photoWin.document.write('<font color=#999999 face=verdana size=2>Convocation 2000 (C2K), January 7, 2000</font></body></html>');	photoWin.document.close();			// If we are on NetScape, we can bring the window to the front	if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();}