<!--
function tokei2() {
    now = new Date();
    year = now.getYear();
    month = now.getMonth()+1;
    day = now.getDate();
    wday=now.getDay();
    hour = now.getHours();
    minute = now.getMinutes();
    second = now.getSeconds();
   
    if (year < 1000) { year += 1900 }
    if (hour < 10) { hour = '0' + hour }
    if (minute < 10) { minute = '0' + minute }
    if (second < 10) { second = '0' + second }
    if (wday==0)  {wday='(日)'}
    if (wday==1)  {wday='(月)'}
    if (wday==2)  {wday='(火)'}
    if (wday==3)  {wday='(水)'}
    if (wday==4)  {wday='(木)'}
    if (wday==5)  {wday='(金)'}    
    if (wday==6)  {wday='(土)'}
    
    if (document.all)
document.all.clock.innerHTML=month + '/' + day + wday + hour + ':' + minute + ':' + second;
else if (document.getElementById)
document.getElementById("clock").innerHTML=month + '/' + day + wday + hour + ':' + minute + ':' + second;
else
document.write(month + '/' + day + wday + hour + ':' + minute + ':' + second);

    setTimeout("tokei2()",1000);
}

//-->