// JavaScript Document
function showCopyright() {
	var copyrightDate = new Date();
	return "&copy; " + copyrightDate.getFullYear();	
}
