mySysDate=new Date();
myYear=mySysDate.getYear();
myMonth=mySysDate.getMonth();
myDate=mySysDate.getDate();
day=new Array("日","月","火","水","木","金","土");
myDay=day[mySysDate.getDay()];
myHour=mySysDate.getHours()
myMinutes=mySysDate.getMinutes();

