/* copyright”N
------------------------------------------------------------*/
function printYear () {
		today = new Date();
		nowDate = today.getFullYear();
		document.write (nowDate);
}

