<!--
var copyrightmessage = makeCopyrightMessage();

function makeCopyrightMessage() {
	var currentdate = new Date();
	var theyear = currentdate.getYear();
	if (theyear < 2000) {
		theyear += 1900;
	}
	var cprmsg = "Copyright 2000 - " + theyear + " by <a href=http://www.EchoBeachHouse.com></a>&copy;Echo Beach House. All rights reserved";
	return cprmsg;
}
