// JavaScript Document
function writeCopyright() {
	var CurrentYear = new Date().getFullYear();
	
	if (CurrentYear == 2005) 
		document.write("Copyright &copy; 2005, Chicago Blues Foundation, Inc., All Rights Reserved.");
	else
		document.write("Copyright &copy; 2005-", CurrentYear, " Chicago Blues Foundation, Inc., All Rights Reserved.");
 }