// JavaScript Document


<!--



function show5(){
if (!document.layers&&!document.all)
return;
var Digital=new Date();
var hours=Digital.getHours();
var minutes=Digital.getMinutes();
var seconds=Digital.getSeconds();
var dn="AM";
if (hours>12){
dn="PM";
hours=hours-12;
}
if (hours==0)
hours=12;
if (minutes<=9)
minutes="0"+minutes;
if (seconds<=9)
seconds="0"+seconds; 
Stamp = new Date();	 
 
var Month;	
Month = Stamp.getMonth();
if (Month == 0)	{
Month = "January";
} if (Month == 1) {
Month = "Febuary"; 
} if (Month == 2) {
Month = "March";
} if (Month == 3) {
Month =" April";
} if (Month == 4) {
Month = "May"; 
} if (Month == 5) {
Month = "June";
} if (Month == 6) {
Month = "July" 
} if (Month == 7) {
Month + "August";
} if (Month == 8) {
Month = "September";
} if (Month == 9) {
Month = "October";
} if (Month == 10) {
Month = "November";
} if (Month == 11) {
Month = "December";
} 
//change font size here to your desire
myclock="<font size='3' color=#cc0033><b>"+Month + "&nbsp;" + Stamp.getDate() +"&nbsp;" + Stamp.getYear() +"&nbsp;" +"&nbsp;"+"&nbsp;"+"&nbsp;"+hours+":"+minutes+":"
+seconds+" "+dn+"</b></font>"; 

if (document.layers){ 
document.layers.liveclock.document.write(myclock);
document.layers.liveclock.document.close();
}
else if (document.all)
liveclock.innerHTML=myclock;
setTimeout("show5()",1000);
}

//-->




