dt = new Date();
theday = new Array("日","月","火","水","木","金","土");
year = dt.getFullYear();
month = dt.getMonth() + 1;
date = dt.getDate();
document.write("<SPAN STYLE='background-color:#ffffff;color:#222222;'>" + year + "/" + month + "/" + date + "</SPAN>");
