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é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 jourcourant(){
var semaine = new Semaine();
var mois = new Mois();
var myDate = new Date();
var nav = navigator.appName.charAt(0);
if (nav=="N")
{
document.writeln(semaine[myDate.getDay()]+" "+myDate.getDate()+" "+mois[myDate.getMonth()]+" "+(1900+myDate.getYear()));
}
else
{
document.writeln(semaine[myDate.getDay()]+" "+myDate.getDate()+" "+mois[myDate.getMonth()]+" "+(myDate.getYear()));
}
}

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->
<!-- Confirmation suppression
function getInfo(msg) {
doyou = confirm(msg);
if (doyou == true)
return true;
else
return false;
}
//-->
<!--
function FocusText(BoxName)
{
if (BoxName.value == BoxName.defaultValue)
{
BoxName.value = '';
}
}
function BlurText(BoxName)
{
if (BoxName.value == '')
{
BoxName.value = BoxName.defaultValue;
}
}
function montre(calque){
	var div = document.getElementById(calque);
	div.style.visibility = 'visible';
	div.style.display = 'block';
}
function cache(calque) {
	var div = document.getElementById(calque);
	div.style.visibility = 'hidden';
	div.style.display = 'none';
}
function ajaxCrossPage(filename,method,div) {   
   document.getElementById(div).innerHTML = "<br><center><img src=/img/loading.gif></center>";
   var xhr_object  = null;
   if(window.XMLHttpRequest) {
      xhr_object = new XMLHttpRequest();
   } else if(window.ActiveXObject) {
      xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
   } else {
      alert("Ajax non supporté");
      return;
   }
   data = "";
   xhr_object.open(method, filename, true);
   xhr_object.onreadystatechange = function() {
      if(xhr_object.readyState == 4) {
     	document.getElementById(div).innerHTML = xhr_object.responseText;   
      }
   }
   xhr_object.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
   xhr_object.send(data);
   return true;
}
function show_theme()
{
	if (document.quest.idtheme.value == "x") {
	document.getElementById('theme').style.visibility = 'visible';
	document.getElementById('theme').style.display = '';
	} else {
	document.getElementById('theme').style.visibility = 'hidden';
	document.getElementById('theme').style.display = 'none';
	}
}