锘?/ JavaScript Document
var enabled = 0; today = new Date();
var day; var date;
if(today.getDay()==0) day = " Sunday "
if(today.getDay()==1) day = " Monday "
if(today.getDay()==2) day = " Tuesday "
if(today.getDay()==3) day = " Wednesday "
if(today.getDay()==4) day = " Thursday "
if(today.getDay()==5) day = " Friday "
if(today.getDay()==6) day = " Saturday "
document.fgColor = " FF0072";
date1 =today.getDate() + "-" + (today.getMonth() + 1 ) + "-" + (today.getYear()) ;
date2 = day ;
document.write(date1);
document.write(date2);
document.write("");
var now,hours,minutes,seconds,timeValue;
function showtime(){
now = new Date();
hours = now.getHours();
minutes = now.getMinutes();
seconds = now.getSeconds();
timeValue = (hours >= 12) ? "
PM" : "
AM";
timeValue += hours+ ":";
timeValue += ((minutes < 10) ? "0" : "") + minutes + ":";
timeValue += ((seconds < 10) ? "0" : "") + seconds + "";
clock.innerHTML = timeValue;
setTimeout("showtime()",100);
}