<!--
var i = "";

function affichedate(jjj) {
	var now = new Date();
	var year;

	function MakeArray(n) {
		this.length = n;
		for (var i = 0; i<n; i++) {
			this[ i ] = "";
		}
		return this;
	}

	var jour = new MakeArray(7);
	for (var i=0; i<7; i++) {
		jour[i]="";
	}
	jour[0]="Dimanche";
	jour[1]="Lundi";
	jour[2]="Mardi";
	jour[3]="Mercredi";
	jour[4]="Jeudi";
	jour[5]="Vendredi";
	jour[6]="Samedi";

	var mois = new MakeArray(12);
	for (var i=0; i<12; i++) {
		mois[i]="";
	}
	mois[0]="janvier";
	mois[1]="février";
	mois[2]="mars";
	mois[3]="avril";
	mois[4]="mai";
	mois[5]="juin";
	mois[6]="juillet";
	mois[7]="août";
	mois[8]="septembre";
	mois[9]="octobre";
	mois[10]="novembre";
	mois[11]="décembre";

	if (jjj==1) {document.write(jour[now.getDay()],' ');}
	document.write(now.getDate());
	if (now.getDate()==1) {
		document.write("er ");
	}
	else {
		document.write(" ");
	}
	document.write(mois[now.getMonth()],' ');
	year=now.getYear();
	if (year<2000) {
		year=year+1900
	}
	document.write(year);
}

function afficheheure() {
	Today = new Date;
	Heure = Today.getHours();
	Min = Today.getMinutes();
	Message = Heure + " h " + Min + ".<br>";
	document.write(Message);
}

function mover(i) {
	window.alert(i);
}

function mout(i) {
	window.alert(i);
}

function recupurl() {
	var url_recue = document.location.href;
	if (url_recue.indexOf("?",0)!=-1) {
		var tab = url_recue.split("?"); 
		var chaine_donnee = tab[1]; 
		var tab2 = chaine_donnee.split("&"); 
		var temp; 
		for (x=0;x<tab2.length; x++) { 
			temp = tab2[x].split("="); 
			eval(temp[0]+"=\""+temp[1]+"\""); 
		}
	}
}

function maj(txt) {
	document.write("<sup><font color=#000099> >>> " + txt + " <<< </font></sup>");
}

// -->
