<!--
fuLast = document.lastModified;
now = new Date(fuLast);
fuYear = now.getYear();
if(fuYear<2000){fuYear=fuYear+1900};//ネスケ対策
fuMonth = now.getMonth() + 1;
fuDate = now.getDate();
fuHour = now.getHours();
fuMin = now.getMinutes();
fuSec = now.getSeconds();
if (fuMonth < 10) {fuMonth;}
if (fuDate < 10) {fuDate;}
if (fuHour < 10) {Hour;}
if (fuMin < 10) {fuMin;}
if (fuSec < 10) {fuSec;}
fuStr = "更新日： " + fuYear + "." + fuMonth + "." + fuDate;//年月日
fuJikan = " - " + fuHour ;//時間
fuFun = ":"+fuMin ;//分
fuByou = ":"+fuSec ;//秒

//document.write( fuStr );//年月日表示
//document.write( fuJikan );//時間表示
//document.write( fuFun );//分表示
//document.write( fuByou );//秒表示
// -->
