// By using a Javascript function to create the copyright text, we only have to change
// the copyright year in one file each year.  Otherwise, we'd have to change each page
// in the web site.

function copyright() {
	var copyrightYear='2010';
	document.write('Copyright NHSSMBA ' + copyrightYear + ' All rights reserved.');
}

copyright();
