function LastUpdate(doc)
{
	dlu = new Date(doc.lastModified);
	dluj = dlu.getDate();
	dlum = dlu.getMonth() + 1;
	dlua = dlu.getUTCFullYear();
	if (dluj < 10)  dluj = "0"+dluj;
	if (dlum < 10)  dlum = "0"+dlum;
	dluh = dlu.getHours();
	if (dluh < 10) dluh = "0" + dluh;
	dlun = dlu.getMinutes();
	if (dlun < 10) dlun = "0" + dlun;
	dlus = dlu.getSeconds();
	if (dlus < 10) dlus = "0" + dlus;
	date_text = "Mise à jour: " + dluj + "/" + dlum + "/" + dlua;
	return date_text
}

function openWindow (url,title) {
	popupWin = window.open (url, title, 'toolbar=no, location=no, directories=no, status=no, scrollbars=no, resizable=no, copyhistory=no, width=450, height=400, left=80, top=120')
}