function date_du_jour()
{
navvers = navigator.appVersion.substring(0,1);
if (navvers > 3)
	navok = true;
else
	navok = false;

today = new Date;
jour = today.getDay();
numero = today.getDate();
if (numero<10)
	numero = "0"+numero;
mois = today.getMonth();
if (navok)
	annee = today.getFullYear();
else
	annee = today.getYear();
TabJour = new Array("Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi");
TabMois = new Array("janvier","février","mars","avril","mai","juin","juillet","aout","septembre","octobre","novembre","décembre");
messageDate = TabJour[jour] + " " + numero + " " + TabMois[mois] + " " + annee ;
var alph="<div style=\"font-size:0.8em; font-variant:normal; color:#333399; font-weight:normal; text-align:right\">"+messageDate+"&nbsp;&nbsp; </DIV>";

document.write(alph);
}

function NewWindow(url,x,y,t,l,sb,rs,tb) 
{
	var top=parseInt(t);
	var left=parseInt(l);
	largeur=parseInt(x);
	hauteur=parseInt(y);
	winprops = 
	'height='+hauteur+',width='+largeur+',top='+top+',left='+left+
	', '+sb+', '+rs+', '+tb; 
	win = window.open(url, "nouvelle_fenêtre", winprops);
	win.focus();
}
