<!--
	var a;
	a=new Date(document.lastModified);
	lm_year=a.getYear();
	if (lm_year<1000){ 				//just in case date is delivered with 4 digits
		if (lm_year<70){
		lm_year=2000+lm_year;
		}
		else lm_year=1900+lm_year;
	}								//end workaround
	lm_month=a.getMonth()+1;
	if (lm_month<10){
		lm_month='0'+lm_month;
	}
	lm_day=a.getDate();
	if (lm_day<10){
		lm_day='0'+lm_day;
	}
	

// Table here //
document.write('<table width="95%" cellspacing="0" cellpadding="0" border="0" align="center">');
document.write('<tr>');
document.write('<td width="30%" align="left" valign="top">');
document.write('<p class="smallPara">Contact: <a href="javascript:contact_len();" class="contact">Seacoast Chapter</a><br/>');
document.write("Last Modified: " + lm_month+'/'+lm_day+'/'+lm_year);
document.write('<\/p>');
document.write('<\/td>');
document.write('<td width="40%" align="center" valign="baseline">');
document.write('<a href="http://www.nhaudubon.org" target="_blank"><img src="images/asnh_white.gif" border="0" alt="Visit the NH Audubon site"></a>');
document.write('<\/td>');
document.write('<td width="30%" align="right" valign="top">');
document.write('<p class="smallPara">&copy;2007 Seacoast Chapter.<br/>NH Audubon Society.');
document.write('<\/pv>');
document.write('<\/td>');
document.write('<\/tr>');
document.write('<\/table>');
//-->

