// Process the document info used in the footervar myURL = document.location.href;// Get the part of the URL that comes after "/pb"myURL = myURL.substring(myURL.indexOf("/pb") + 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 = "pbl on the web since sep 1996";}function write_footer(dflag) {	// if param is 0 than skip the page data (from cgi calls)		if (dflag == 0) {		myURL = " ";		myMod= " ";	}		document.write('<tr><td width=140><IMG SRC="images/clear.gif" ALT="-" WIDTH=1 HEIGHT=1 hspace=70></td><td width=410 colspan=3 valign=top align=right>');	document.write('<img src="images/gbar.gif" alt="------" width="390" height="3"><p><font face="verdana,helvetica" size=2>');	document.write('<B>pbl : ' + 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><br><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('http://www.mcli.dist.maricopa.edu/pbl/' + myURL);	document.write('<br>' + myMod + '<br>see our <a href="kudos.html">web site recognition</a></font></p>');	document.write('<img src="images/gbar.gif" alt="------" width="390" height="3"></td></tr>');}function goWeb (page) {	if (page != "" ) {window.open(page, '_new')}}