// JavaScript Document
// Disply footer on bottom of all documents

document.writeln('<table width="100%" border="0" cellspacing="0" cellpadding="0">');
document.writeln('<tr align="center">');
document.writeln('<td><p><br><br><a href="/index.htm">Home</a> • <a href="/about.htm">About Us</a> • ');
document.writeln('<a href="/joinus.htm">Join</a> • <a href="/contactus.htm">Contact Us</a> • ');
document.writeln('<a href="/archives.htm">Archives</a></p>');


//document.writeln(' FOOTER TEXT');
document.writeln('<p><i>Real Change Comes From the Ground Up!</i></p>');
document.writeln('<p><font size="-1">©2003 Community Farm Alliance');

document.writeln(' </font><br><br></p></td>');
document.writeln('</tr>');
document.writeln('</table>');

// End script