function year() {
	var date = new Date();
	var now_year = date.getFullYear();
	document.write(now_year);
}
