// JavaScript Document

function year()
{
	var d = new Date()
	var y = d.getFullYear()
	document.write('<font face="arial" size="1" color="#333333"><strong>');
	document.write('&copy; Copyright Chung Wah Association, Inc&nbsp;');
	document.write(y);
	document.write('.');
	document.write('</strong></font>');
}