<!--
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;
mois = today.getMonth();
if (navok)
	annee = today.getFullYear();
else
	annee = today.getYear();
mois++;
if (mois < 10)
	mois = "0" + mois;
messageDate = numero + "/" + mois + "/" + annee;


function popup(theUrl, scroll, ww, hh) { 
window.open(theUrl,'','toolbar=no,resizable=no,scrollbars='+scroll+',menubar=no,location=no,width='+ww+',height='+hh+',left=0,top=0');
}
-->