function gettheDate() 
{
	Todays = new Date();
	Mnth = Todays.getMonth()+ 1;
	if (Mnth == 1) {
		Month = "Gennaio";
	}
	if (Mnth == 2) {
		Month = "Febbraio";
	}
	if (Mnth == 3) {
		Month = "Marzo";
	}
	if (Mnth == 4) {
		Month = "Aprile";
	}
	if (Mnth == 5) {
		Month = "Maggio";
	}
	if (Mnth == 6) {
		Month = "Giugno";
	}
	if (Mnth == 7) {
		Month = "Luglio";
	}
	if (Mnth == 8) {
		Month = "Agosto";
	}
	if (Mnth == 9) {
		Month = "Settembre";
	}
	if (Mnth == 10) {
		Month = "Ottobre";
	}
	if (Mnth == 11) {
		Month = "Novembre";
	}
	if (Mnth == 12) {
		Month = "Dicembre";
	}

	Year = Todays.getFullYear();
	
	TheDate = Month + " - " + Todays.getDate() + " - " + Year
	return (TheDate);
}

