<!--
function DigitalTime()

{
 
 	 if (!document.layers && !document.all)
 	
	return
 
 	var DigitalClock = new Date();
 
 	var hours = DigitalClock.getHours();
 
 	var minutes = DigitalClock.getMinutes();
 
 	var seconds = DigitalClock.getSeconds();
 	
 	var days = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'];
 	var day = DigitalClock.getDay();
 	
 	var months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
 	var month = DigitalClock.getMonth();
	
 	
 	var dat = DigitalClock.getDate();
 	var year = DigitalClock.getYear();
	
 	var dn = "am";
	
 	if (hours > 12)
	
	{
	
 		dn = "pm";
 
 		hours = hours - 12;
 
 	}
	
	if (hours == 0)
	
 		hours = '00';
		
 	if (minutes <= 9)
		
		minutes = "0" + minutes;
	
	if (seconds <= 9)
			
		seconds = "0" + seconds;
				
		//change font size here to your desire
		
	digclock = "<font size='1' face='Arial' color='#466C9F'>" + days[day] + ", " + months[month] + " " + dat + ", " + hours + ":" + minutes + ":" + seconds + dn + "</font>";

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

//-->


