<!--//
function DigitalTime()
{ 
 if (!document.layers && !document.all)
 	return
  	var DigitalClock = new Date();
  	var hours = DigitalClock.getHours();
  	var minutes = DigitalClock.getMinutes();
  	var seconds = DigitalClock.getSeconds();
	if (hours == 0)
	hours = 12;
	if (minutes <= 9)
	minutes = "0" + minutes;
	if (seconds <= 9)
	seconds = "0" + seconds;
	//change font size here to your desire
(document.forms.length > 0)
  document.forms[0].liveclock.value = hours + ":" + minutes + ":" + seconds;
setTimeout("DigitalTime()",1000)
}
//-->