/*function Mois(){
	this[0]="Janvier";this[1]="Février";
	this[2]="Mars";this[3]="Avril";
	this[4]="Mai";this[5]="Juin";
	this[6]="Juillet";this[7]="Août";
	this[8]="Septembre";this[9]="Octobre";
	this[10]="Novembre";this[11]="Décembre";
}
			
function date(){
	var mois=new Mois();
	var myDate=new Date();
	var result=myDate.getDate()+" "+mois[myDate.getMonth()]+" "+myDate.getFullYear();
        
	document.writeln(result);
}

function Month(){
	this[0]="January";this[1]="February";
	this[2]="March";this[3]="April";
	this[4]="May";this[5]="June";
	this[6]="July";this[7]="August";
	this[8]="September";this[9]="October";
	this[10]="November";this[11]="December";
}
			
function dateE(){
	var mois=new Month();
	var myDate=new Date();
	/*var toto;
	switch(myDate.getDate()){
		case 1:toto="1st";break;
		case 2:toto="2nd";break;
		case 3:toto="3rd";break;
		default:toto=myDate.getDate()+"th";break;
	}
	var result=mois[myDate.getMonth()]+" "+toto+" "+myDate.getFullYear();
  
  var result=myDate.getDate()+" "+mois[myDate.getMonth()]+" "+myDate.getFullYear();
  
	document.writeln(result);
}*/

function show(id) {
	if(navigator.appName=="Microsoft Internet Explorer"){
		if(navigator.userAgent.match(/MSIE ([0-9]+(?:\.[0-9]+)*)/)[1] < "7"){
			document.getElementById('body').style.zIndex=-1;
		}
		else{
			document.getElementById('body').style.zIndex=0;
		}
	}
	if (document.getElementById) {
		document.getElementById(id).style.display="block";
	} else if (document.all) {
		document.all[id].style.display="block";
	} else if (document.layers) {
		document.layers[id].display="block";
	}
} 

function hide(id) { 
	if(navigator.appName=="Microsoft Internet Explorer"){
		document.getElementById('body').style.zIndex=0;
	}
	if (document.getElementById) { 
		document.getElementById(id).style.display="none"; 
	} else if (document.all) { 
		document.all[id].style.display="none"; 
	} else if (document.layers) { 
		document.layers[id].display="none"; 
	} 
}
