/******************************
	Calendrier
*******************************/
function Semaine()
{
           this[0] = "Dimanche";
           this[1] = "Lundi";
           this[2] = "Mardi";
           this[3] = "Mercredi";
           this[4] = "Jeudi"; 
           this[5] = "Vendredi";
           this[6] = "Samedi";
}

function Mois(){
           this[0] = "Janvier";
           this[1] = "F&eacute;vrier";
           this[2] = "Mars";
           this[3] = "Avril";
           this[4] = "Mai";
           this[5] = "Juin";
           this[6] = "Juillet";
           this[7] = "Ao&ucirc;t";
           this[8] = "Septembre";
           this[9] = "Octobre";
           this[10] = "Novembre";
           this[11] = "D&eacute;cembre";
           }

function date(){
           var semaine=new Semaine();
           var mois=new Mois();
           var myDate=new Date();
           var result=semaine[myDate.getDay()]+" "+myDate.getDate()+" "+mois[myDate.getMonth()]+" "+myDate.getYear();
	   document.writeln(result);
	   }

	   
<!--
function openform(url) {
	var page = escape(document.location.href);
	var url = url + "?url=" + page;
		var NS = (document.layers) ? true : false;
		var IE = (document.all) ? true : false;
	
		if(NS) {
			window.open(url,"","scrollbars=yes,menubar=no,personalbar=no,width=500,height=610,screenX=220,screenY=0");
		} else if(IE) {
			window.open(url,"","scrollbars=yes,menubar=no,personalbar=no,width=500,height=580,left=220,top=0");
		}
}
//-->


<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
