// JavaScript Document
function copyrightYear()
{
	var timestamp = new Date();
	var year      = timestamp.getFullYear();
	
	return year;
}