function copy() {
	var theDate = new Date();
	document.write(theDate.getFullYear());
}
function calender() {
	nowTime = new Date();
	nowDay = new Array("日","月","火","水","木","金","土")[nowTime.getDay()];
	document.write("現在の時刻は　"+nowTime.getFullYear()+"年　",nowTime.getMonth()+1,"月"+nowTime.getDate()+"日("+nowDay+")　"+nowTime.getHours()+"時"+nowTime.getMinutes()+"分"+nowTime.getSeconds()+"秒です");
}	
