function writeToday() {
	aDay = new Array("Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi");
	aMonth = new Array("janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre");
	dNow = new Date();
	iDay = dNow.getDate();
	iYear = dNow.getYear();
	if (iYear < 2000) iYear += 1900;
	document.write(aDay[dNow.getDay()] + ' ' + iDay + ' ' + aMonth[dNow.getMonth()] + ' ' + iYear);
}

function writeTime() {
	dNow 	= new Date;
	iHour = dNow.getHours();
	iMin 	= dNow.getMinutes();
	if (iMin < 10) iMin0 = '0';
	else iMin0 	= '';
	if (iHour < 10) iHour0 = '0';
	else iHour0 = '';
	sTime = iHour0 + iHour + 'h' + iMin0 + iMin;
	which = sTime;
	if (document.getElementById) {
		document.getElementById('divNowHour').innerHTML = which;
	}
	setTimeout('writeTime()', 1000);
}

function ShowImgBigger(sUrl)
{
	i1 = new Image;
	i1.src = sUrl;
	html = '<html><head><title>Agrandissement</title></head><body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0"><center><a href="#" onclick="window.close();"><img src="'+sUrl+'" border="0" alt="Cliquez pour fermer" name="imageTest" onLoad="window.resizeTo(document.imageTest.width+14, document.imageTest.height+32)"></a></center></body></html>';
	popupImage = window.open('', '_blank', 'top=100,left=100,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close();
}
function OpenCenteredPop(cible,largeur,hauteur) {
	var top = (screen.height-hauteur)/2;
	var left = (screen.width-largeur)/2;
	window.open(cible,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",'menubar=no,scrollbars=no,statusbar=no,resizable=yes'");
}