//writes footer containing copyright and author at bottom of each page and updates year
function WriteFooter() {
var now = new Date();
var thisYear = now.getYear();
// var thisYear = 01; // for debug only
	if(thisYear < 1900){
	thisYear += 1900;
	}
// First year of copyright notice
var startYear = 1999;
	if (startYear == thisYear){
	startYear = "";
	}
	else {
	startYear = startYear + "-";
	}
	document.write ("<DIV CLASS=small>Copyright &copy; " + startYear + thisYear + " Central Toastmasters. All Rights Reserved.</DIV>");
	document.write ("<FONT CLASS=small>Site Design by</FONT> <A CLASS=small HREF=http://www.ibdev.com TARGET=_blank>Internet Business Developers</A>");
}
