function openfull(theURL,winName,features,w,h) { //v2.0
	newwin=window.open(theURL,winName,features,w,h);
	newwin.moveTo(0,0);
	newwin.resizeTo(screen.availWidth,screen.availHeight)
	newwin.focus()
}

function showhide(id){
	if (document.getElementById){
		obj = document.getElementById(id);
		//alert(obj);
		if (obj.style.display == "none"){
			obj.style.display = "";
		} else {
			obj.style.display = "none";
		}
	}
} 

function disp(txt) {document.write(txt);}
function don_date_maj()
	{var date_maj=new Date(document.lastModified);
	date_maj=don_date_format(date_maj);
	return date_maj;}
function don_date_jour()
	{var date_jour=new Date();
	date_jour=don_date_format(date_jour);
	return date_jour;}
function don_date_format(d1) {
	var m=new Array(13);
	m[1]="Janvier"; m[2]="Février";	m[3]="Mars"; m[4]="Avril"; m[5]="Mai"; m[6]="Juin";
 	m[7]="Juillet";	m[8]="Août"; m[9]="Sept."; m[10]="Oct.";	m[11]="Nov."; m[12]="Déc.";
	var d=new Array(8);
	d[1]="Dim."; d[2]="Lundi"; d[3]="Mardi"; d[4]="Merc."; d[5]="Jeudi"; d[6]="Vend."; d[7]="Samedi";
	var mois=m[d1.getMonth()+1];
	var jour=d[d1.getDay()+1];
	var date=d1.getDate();
	var an=d1.getYear();
	if (an<200) an=1900+an;
	date=jour+" "+date+" "+mois+" "+an;
	return date;
	}	

