/*This function generates the current year in the format yyyy.*/
function displayYear()
{
	var currentTime = new Date();
	var year = currentTime.getFullYear();
	document.write(year);
}