lmDate=new Date(document.lastModified);
// 最終更新日の日付オブジェクトを作成

lmY = lmDate.getFullYear();
lmM = lmDate.getMonth() + 1;
lmD = lmDate.getDate();

document.write(lmY, ".", lmM, ".", lmD)
