// JavaScript Document
function showYear(){
	var now = new Date();
	var year = now.getFullYear().toString();
	return year;
}