<!-- Original:  Andrea Bianchi  
//  Web Site:  http://www.web-link.it 
function WebDate() {
	var now = new Date();
	var year= now.getYear();if (year < 1000) year += 1900;
	nameDay = new Array('Dom','Lun','Mar','Mer','Gio','Ven','Sab');
	nameMth = new Array('Gen','Feb','Mar','Apr','Mag', 'Giu', 'Lug', 'Ago', 'Set', 'Ott', 'Nov','Dic');
	document.write('<p style="color: red; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 11px; line-height: 11px; COLOR: #ea3d4c; text-align: right;">'+nameDay[now.getDay()]+ ' ' + now.getDate() + " " + nameMth[now.getMonth()] + " " + year+'<\/p>');
}
// end -->

<!-- 
// Prelevato e spiegato su: http://www.web-link.it  
function showFilled(Value) {
  return (Value > 9) ? "" + Value : "0" + Value;
}
function StartClock24() {
  TheTime = new Date;
  document.clock.showTime.value = showFilled(TheTime.getHours()) + ":" + showFilled(TheTime.getMinutes()) + ":" + showFilled(TheTime.getSeconds());
  setTimeout("StartClock24()",1000)
}
//window on loaad-->

window.onload=function(){StartClock24()};
