acDate=new Date();
myYear=acDate.getYear();
if(myYear<2000){myYear=myYear+1900};
myMonth=acDate.getMonth();
myDate=acDate.getDate();
acDay=new Array("日","月","火","水","木","金","土");
myDay=acDay[acDate.getDay()];
myHour=acDate.getHours();
myMinute=acDate.getMinutes();