function currentYear() {
	_currentDate = new Date()
	_currentYear = _currentDate.getFullYear()
	return _currentYear
}
		
function printCopyRight() {
	_copyRight = "&copy; " + currentYear()
	document.write(_copyRight)
}