function write_date(){
var months=new Array(13);
months[1]="janvier";
months[2]="février";
months[3]="mars";
months[4]="avril";
months[5]="mai";
months[6]="juin";
months[7]="juillet";
months[8]="août";
months[9]="septembre";
months[10]="octobre";
months[11]="novembre";
months[12]="décembre";

var weekdays=new Array(7);
weekdays[1] = "Dimanche";
weekdays[2] = "Lundi";
weekdays[3] = "Mardi";
weekdays[4] = "Mercredi";
weekdays[5] = "Jeudi";
weekdays[6] = "Vendredi";
weekdays[7] = "Samedi";

var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
var today=weekdays[time.getDay() + 1];

if (year < 2000) // y2k fix
year = year + 1900;
//document.write("Today is " + lmonth + " " + date + ", " + year);

document.write(today + " " + date + " " + lmonth + " " + year);
}
// End -->
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}
function changeImages() {
	if (document.images) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}
isOpen = false;
function popUp(myurl, width, height, top, left, scroll) {
	scrollable = "no";
	if(scroll)
		scrollable = "yes";
	if(isOpen)
		popWindow.close();
	popWindow = window.open(myurl, 'pop', "height=" + height + ", width=" + width + ", top=" + top + ", left=" + left + ", scrollbars=" + scrollable + ", toolbar=no, resizeable=no, menubar=no");
	isOpen = true;
}
isOpen = false;
function popUp_lift(myurl, width, height, top, left, scroll) {
	scrollable = "yes";
	if(scroll)
		scrollable = "yes";
	if(isOpen)
		popWindow.close();
	popWindow = window.open(myurl, 'pop', "height=" + height + ", width=" + width + ", top=" + top + ", left=" + left + ", scrollbars=" + scrollable + ", toolbar=no, resizeable=no, menubar=no");
	isOpen = true;
}
// debut script déroulant 
function verifyCompatibleBrowser(){ 
	this.ver=navigator.appVersion 
	this.dom=document.getElementById?1:0 
	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0; 
	this.ie4=(document.all && !this.dom)?1:0; 
	this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0; 
	this.ns4=(document.layers && !this.dom)?1:0; 
	this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5) 
	return this 
} 
bw=new verifyCompatibleBrowser() 
lstart=50 
loop=true  
speed=50
pr_step=1
function ConstructObject(obj,nest){ 
    nest=(!nest) ? '':'document.'+nest+'.' 
	this.el=bw.dom?document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?eval(nest+'document.'+obj):0; 
  	this.css=bw.dom?document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?eval(nest+'document.'+obj):0; 
	this.scrollHeight=bw.ns4?this.css.document.height:this.el.offsetHeight 
	this.newsScroll=newsScroll; 
	this.moveIt=b_moveIt; this.x; this.y; 
    this.obj = obj + "Object" 
    eval(this.obj + "=this") 
    return this 
} 
function b_moveIt(x,y){ 
	this.x=x;this.y=y 
	this.css.left=this.x 
	this.css.top=this.y 
} 
//Makes the object scroll up 
function newsScroll(speed){ 
	if(this.y>-this.scrollHeight){ 
		this.moveIt(0,this.y-pr_step) 
		setTimeout(this.obj+".newsScroll("+speed+")",speed) 
	}else if(loop) { 
		this.moveIt(0,lstart) 
		eval(this.obj+".newsScroll("+speed+")") 
	  } 
} 
//Makes the object 
function InitialiseAutoScrollArea(){ 
	objContainer=new ConstructObject('divASContainer') 
	objContent=new ConstructObject('divASContent','divASContainer') 
	objContent.moveIt(0,lstart) 
	objContainer.css.visibility='visible' 
	objContent.newsScroll(speed) 
} 
// fin script déroulant
<!--
function inCell(cell, newcolor) {
	if (!cell.contains(event.fromElement)) {
		cell.bgColor = newcolor;
	}
}

function outCell(cell, newcolor) {
	if (!cell.contains(event.toElement)) {
		cell.bgColor = newcolor;
	}
}
//-->
function showhide_menu(which)
{  
	if (document.getElementById(which).style.display == "block")
	{
		document.getElementById(which).style.display = "none";
	}
	else
	{
		document.getElementById(which).style.display = "block";
	}
}
