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