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