//	current-year.js -- Michael S. Rose 2007
//	Returns the current Year for use in Copyright footer
//	http://mmrose.home.comcast.net/scripts/current-year.js
	
    var now = new Date() ;
    document.write ( now.getFullYear() ) ;