// JavaScript Document

function year()
{
	var d = new Date()
	var y = d.getFullYear()
	document.write('<span id="footer">');
	document.write('&copy; Copyright Chung Wah Association, Inc&nbsp;');
	document.write(y);
	document.write('.');
	document.write('</span>');
}
