// JavaScript Document
var d=new Date();
monthname= new Array("Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre");
//Ensure correct for language. English is "January 1, 2004"
var TODAY =d.getDate() + " " + monthname[d.getMonth()] + " " +  d.getFullYear() ;
//--------------- END LOCALIZEABLE   ---------------
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
