function dispFooter()
{
	var dt = new Date();
	document.writeln('<div id="footer">');
	document.writeln('<ul>');
	document.writeln('<li><a href="welcome.html">Home</a></li>');
	document.writeln('<li><a href="psych.html">Psychology &amp; Psychotherapy</a></li>');
	document.writeln('<li><a href="services.html">Services</a></li>');
	document.writeln('<li><a href="providers.html">Treatment Providers</a></li>');
	document.writeln('<li><br /><a href="students.html">Psychology Students</a></li>');
	document.writeln('<li><a href="fees.html">Fees &amp; Cancellation Policy</a></li> ');
	document.writeln('<li><a href="privacy.html">Confidentiality &amp; Privacy</a></li>');
	document.writeln('<li><br /><a href="hours.html">Office Hours</a></li>');
	document.writeln('<li><a href="resources.html">Resources</a></li>');
	document.writeln('<li><a href="faq.html">Frequently Asked Questions</a></li>');
	document.writeln('<li><a href="contact.html">Contact Us</a></li>');
	document.writeln('</ul>');
	document.writeln('<br />');
	document.writeln('Copyright '+dt.getFullYear()+' Dr. Lisa Berger & Associates');
	document.writeln('</div>');
}

dispFooter();
