var str
lmdate = new Date(document.lastModified)
str = "最終更新日："
/* str += lmdate.getYear() + "年" */
str += lmdate.getMonth() + 1 + "月"
str += lmdate.getDate() + "日"
document.write(str)
