<script language="JavaScript">
<!--
function Watch() {
now = new Date();
year = now.getYear();
month = now.getMonth()+1;
day = now.getDate();
youbi = new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
hour = now.getHours();
minute = now.getMinutes();
second = now.getSeconds();
if (year < 1000) { year += 1900 }
if (month < 10) { month = '0' + month }
if (day < 10) { day = '0' + day }
if (hour < 10) { hour = '0' + hour }
if (minute < 10) { minute = '0' + minute }
if (second < 10) { second = '0' + second }
window.status =year + '.' + month + '.' + day + ' '
+ youbi[now.getDay()] + ' ' + hour + ':' + minute + ':' + second;
setTimeout('Watch()',1000);
}
Watch();/* satokoto.blog10.fc2.com */
//-->
</script>
|