// JavaScript Document
/*data in tempo reale*/
navvers = navigator.appVersion.substring(0,1);
if (navvers > 3)
	navok = true;
else
	navok = false;

today = new Date;
numero = today.getDate();
if (numero<10)
	numero = "0"+numero;
mese = today.getMonth();
if (navok)
	anno = today.getFullYear();
else
	anno = today.getYear();
mese++;
if (mese < 10)
	mese = "0" + mese;
messageDate = numero + "/" + mese + "/" + anno;