//Javascript File for virtual footer
//Update this document only to change footer on the entire site

function displayFooter(){   
document.write('<div align="center" class="footer">');
document.write('<a class="footernav" href="index.htm" target="_top">Home</a>&nbsp;');
document.write('| <a class="footernav" href="aboutus.htm" target="_top">About Us</a>&nbsp;');
document.write('| <a class="footernav" href="supportus.htm" target="_top">Support Us</a>&nbsp;');
document.write('| <a class="footernav" href="projects.htm" target="_top">Projects</a>&nbsp;'); 
document.write('| <a class="footernav" href="contactus.htm" target="_top">Contact Us</a>');
document.write('<br>');
document.write('We welcome your ');
document.write('<u>questions, comments, and suggestions.</u> </a>');
document.write('<br>All contents herein <b>');
document.write('Copyright &copy; 2001-2010 The Foundation for Scientific Literacy</b>. <i>All rights reserved.</i> <br>');
document.write('Last updated Apr 2010</div>');
}