today = new Date()
if(today.getDay()==0) day = "<font color=purple>Sun</font>" 
if(today.getDay()==1) day = "Mon"
if(today.getDay()==2) day = "Tue"
if(today.getDay()==3) day = "Wed"
if(today.getDay()==4) day = "Thu"
if(today.getDay()==5) day = "Fri"
if(today.getDay()==6) day = "Sat"

if(today.getMonth()+1==1)  month = "January"
if(today.getMonth()+1==2)  month = "February"
if(today.getMonth()+1==3)  month = "March"
if(today.getMonth()+1==4)  month = "April"
if(today.getMonth()+1==5)  month = "May"
if(today.getMonth()+1==6)  month = "June"
if(today.getMonth()+1==7)  month = "July"
if(today.getMonth()+1==8)  month = "August"
if(today.getMonth()+1==9)  month = "September"
if(today.getMonth()+1==10) month = "October"
if(today.getMonth()+1==11) month = "November"
if(today.getMonth()+1==12) month = "December"


document.write(today.getDate()," ",month," ",today.getYear()," ");
document.write(day," ");


document.write("<span id='clock'></span>");
var now,hours,minutes,seconds,timeValue;
function showtime(){
now = new Date();
hours = now.getHours();
minutes = now.getMinutes();
seconds = now.getSeconds();
timeValue = + hours + ":";
timeValue += ((minutes < 10) ? "0" : "") + minutes + "&nbsp;"+"";
<!-- timeValue += ((seconds < 10) ? " 0" : "") + seconds + "&nbsp;"; -->
clock.innerHTML = timeValue;
setTimeout("showtime()",100);
}
showtime();
