function show5(){
if (!document.layers&&!document.all&&!document.getElementById)
return

 var e, f;
 var Digital=new Date()
 var hours=Digital.getHours()
 var minutes=Digital.getMinutes()
 var seconds=Digital.getSeconds()
 var months=new Array(13); 
	months[1]="January"; 
	months[2]="February"; 
	months[3]="March"; 
	months[4]="April"; 
	months[5]="May"; 
	months[6]="June"; 
	months[7]="July"; 
	months[8]="August"; 
	months[9]="September"; 
	months[10]="October"; 
	months[11]="November"; 
	months[12]="December"; 
	var time=new Date(); 
	var lmonth=months[time.getMonth()+1]; 
	var date=time.getDate(); 
	var year=time.getYear(); 
	if (year<2000) year=year+1900; 
//	document.write(date+" "+lmonth+" "+year);

e = Digital.getDay()+1;
if(e ==1) {
f = "Sunday"
}
else if(e ==2) {
f = "Monday"
}
else if(e ==3) {
f = "Tuesday"
}
else if(e ==4) {
f = "Wednesday"
}
else if(e ==5) {
f = "Thursday"
}
else if(e ==6) {
f = "Friday"
}
else if(e ==7) {
f = "Saturday"
}

var dn="PM"
if (hours<12)
dn="AM"
if (hours>12)
hours=hours-12
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
//change font size here to your desire
myclock="<span>"+f+" | "+date+" "+lmonth+" "+year+" | "+hours+":"+minutes+" "+dn+"</span>"
if (document.layers){
document.layers.liveclock.document.write(myclock)
document.layers.liveclock.document.close()
}
else if (document.all)
liveclock.innerHTML=myclock
else if (document.getElementById)
document.getElementById("liveclock").innerHTML=myclock
setTimeout("show5()",1000)
 }

window.onload=show5