function createCurrentYear() {
	var time = new Date();
	var year = time.getFullYear();
	document.write(year);
}