Here is a very cool! JavaScript for Day,Date,Time and it's LIVE... Change the colors to fit your page...
<head>
</head>
<body bgcolor="#000000" text="#000000">
<script language=JavaScript1.2>
var textcolor = "#FFFFFF"
var seccolor = "#CC9900"
var face = "Arial"
var size = "2"
var timerwidth = 150
</script>
<!--this include provides the functionality for the running relatively positioned
//clock. in order to use this include, begin a javascript block above this include and set the variables
//textcolor, seccolor, face, size, and timerwidth to the desired values. Make sure timer width is
//right or you'll get visibly incorrect layouts. Do not finish the javacscript block with a close tag,
//as it continues into this file and finishes here. This is necessary for propper functionality.
//- C>T> -->
<script language=JavaScript1.2>
function start_countdown()
{
//init();
if (document.layers)
document.timermain.visibility="show"
getSecs()
}
if (document.all)
document.write('<span id="timerie" style="width:&{timerwidth};"></span>')
window.onload=start_countdown
function getSecs()
{
if (!document.layers&&!document.all)
return;
var myTime = new Date();
var thisDate = myTime.getDate();
var seconds = myTime.getSeconds();
var minutes = myTime.getMinutes();
var hours = myTime.getHours();
var day = myTime.getDay();
var month = myTime.getMonth();
var year = myTime.getYear();
if (day==0)
day="Sun";
else if (day==1)
day="Mon";
else if (day==2)
day="Tues";
else if (day==3)
day="Wed";
else if (day==4)
day="Thur";
else if (day==5)
day="Fri";
else if (day==6)
day="Sat";
if (month==0)
month="Jan";
else if (month==1)
month="Feb";
else if (month==2)
month="Mar";
else if (month==3)
month="Apr";
else if (month==4)
month="May";
else if (month==5)
month="Jun";
else if (month==6)
month="Jul";
if (month==7)
month="Aug";
else if (month==8)
month="Sep";
else if (month==9)
month="Oct";
else if (month==10)
month="Nov";
else if (month==11)
month="Dec";
var dn="AM";
if (hours>12)
{
dn="PM";
hours=hours-12;
}
if (hours==0)
hours=12;
if (seconds<=9)
seconds = "0"+seconds;
if (minutes<=9)
minutes="0"+minutes;
var year = myTime.getYear();
if (year<1000) year+=1900;
if (document.layers)
{
document.timermain.document.timersub.document.write("<font color=" + textcolor + " face=" + face + " size=" + size + ">" + day + ", " + month + "." + thisDate + "," + year + " " + hours + ":" + minutes + ":<font color=" + seccolor + ">" + seconds + "</font> " + dn + "</font>")
document.timermain.document.timersub.document.close()
}
else if (document.all)
timerie.innerHTML="<font color=" + textcolor + " face=" + face + " size=" + size + ">" + day + ", " + month + "." + thisDate + "," + year + " " + hours + ":" + minutes + ":<font color=" + seccolor + ">" + seconds + "</font> " + dn + "</font>"
setTimeout("getSecs()",1000)
}
</script>
<ilayer id=timermain visibility="hide" height="23;"
width="&{timerwidth};">
<layer id=timersub top="0" height="23;"
width="&{timerwidth};" left="0"></layer>
</ilayer>
</body>