toDay=new Date()
youbi=new Array("日","月","火","水","木","金","土");
theMonth=toDay.getMonth()+1;
theDay=toDay.getDate();
theDay2=youbi[toDay.getDay()];
theHour=toDay.getHours();
theMinutes=toDay.getMinutes();
str2="現在、"+toDay.getFullYear() + "年" + theMonth + "月" + theDay + "日" + "(" + theDay2 + "曜日)" + theHour + "時" + theMinutes + "分です。";
document.write(str2.fontsize(6).fontcolor("#0044DD"));

