function Time_Date()
	{
	xyz   = new Date;
	hours = xyz.getHours();
	min   = xyz.getMinutes();
	sec   = xyz.getSeconds();
	day   = xyz.getDate();
	month = xyz.getMonth()+1;
	year  = xyz.getFullYear();
	var now = new Date();
	nameDay = new Array('Domenica','Lunedi','Martedi','Mercoledi','Giovedi','Venerdi','Sabato');
	nameMth = new Array('Gennaio','Febbraio','Marzo','Aprile','Maggio', 'Giugno', 'Luglio', 'Agosto', 'Settembre', 'Ottobre',  
						'Novembre','Dicembre');
	if (sec < 10)
		sec0 = "0";
	else
		sec0 = "";
	if (min < 10)
		min0 = "0";
	else
		min0 = "";
	if (hours < 10)
		hours0 = "0";
	else
		hours0 = "";
	Set_time_date = nameDay[now.getDay()] + " " + day + "." + month + "." + year + " - " + hours0 + hours + ":" + min0 + min;
	which = Set_time_date
	if (document.getElementById){
		document.getElementById("show_time_date").innerHTML=which;
	}
	setTimeout("Time_Date()", 1000)
	}
window.onload = Time_Date;