// JavaScript Document
function year() {
	var today=new Date();
	document.write(' &ndash; ');
	document.write(today.getFullYear());
	
}