 	<!-- Hide script from old browsers
 	var dayName=new Array
 		("domenica","lunedì","martedì","mercoledì","giovedì","venerdì","sabato")
 	var monName=new Array
 		("gennaio","febbraio","marzo","aprile","maggio","giugno","luglio","agosto","settembre","ottobre","novembre", "dicembre")
 	var now=new Date
 	year = now.getYear();
 	if (year < 2000)
 	year = year + 1900;

 	format = "2";

	 	document.write("<div id=date>");
	 	if (format == "1") {
	 		document.write(dayName[now.getDay()]+" "+ monName[now.getMonth()]+" "+ now.getDate()+", "+ year);
	 	}
	 	if (format == "2"){
	 		document.write(dayName[now.getDay()]+" "+ now.getDate()+ " " + monName[now.getMonth()]+ " " + year);
	 	}
	 	if (format == "3"){
	 		document.write(dayName[now.getDay()]+" "+ now.getDate()+ " " + monName[now.getMonth()]+ ", " + year);
	 	}
	 	if (format == "4"){
	 		document.write(dayName[now.getDay()]+", "+ now.getDate()+ " " + monName[now.getMonth()]+ ", " + year +" r");
	 	}
	 	if (format == "5"){
	 		document.write(dayName[now.getDay()]+" "+ now.getDate()+ ", " + monName[now.getMonth()]+ " " + year);
	 	}
	 	if (format == "6"){
			document.write(dayName[now.getDay()]+" "+ now.getDate()+ ". " + monName[now.getMonth()]+ " " + year);
	 	}
	 	if (format == "7"){
			document.write(dayName[now.getDay()]+", le "+ now.getDate()+ " " + monName[now.getMonth()]+ " " + year);
	 	}
	 	if (format == "8"){
			document.write(dayName[now.getDay()]+", "+ now.getDate()+ ". " + monName[now.getMonth()]+ " " + year);
	 	}
	 	if (format == "9"){
			document.write(dayName[now.getDay()]+", "+ now.getDate()+ " de " + monName[now.getMonth()]+ " de " + year);
	 	}
	 	if (format == "10"){
			document.write(dayName[now.getDay()]+", "+ year + ". gada " + now.getDate() + ". " + monName[now.getMonth()]);
	 	}
	 	document.write("</div>");
 	// End hiding script from old browsers -->

