function visibilite(thing,Id,nb)
{
  var targetElement;
  for(x=1;x<=nb;x++){
    targetElement = document.getElementById(thing+x) ; 
	targetElement2 = document.getElementById('o'+x) ; 
	if(Id == x){
	  targetElement.style.display = "" ;
	  targetElement2.className = 'current';
	}else{
	  targetElement.style.display = "none"
	  targetElement2.className = '';
	}
  }
}

function VersionNavigateur(Netscape, Explorer) {
  if ((navigator.appVersion.substring(0,3) >= Netscape && navigator.appName == 'Netscape') ||      
      (navigator.appVersion.substring(0,3) >= Explorer && navigator.appName.substring(0,9) == 'Microsoft'))
    return true;
  else return false;
}

var WindowObjectReference; 
function openRequestedPopup(url,name)
{
  WindowObjectReference = window.open(url, name,"width=515,height=315,menubar=no,scrollbars=no,location=no,resizable=no,status=no");
}


function WM_imageSwap(daImage, daSrc){
  var objStr,obj;
  // Check to make sure that images are supported in the DOM.
  if(document.images){
    // Check to see whether you are using a name, number, or object
	if (typeof(daImage) == 'string') {
	  // This whole objStr nonesense is here solely to gain compatability
      // with ie3 for the mac.
	  document.images[daImage].src = daSrc;
    } else if ((typeof(daImage) == 'object') && daImage && daImage.src) {
	  daImage.src = daSrc;
    }
  }
}


<!-- DEBUT DU SCRIPT DATE -->

function Semaine(lang){
  if(lang == 'fr'){
    this[0] = "Dimanche";  this[1] = "Lundi";
    this[2] = "Mardi";     this[3] = "Mercredi";
    this[4] = "Jeudi";     this[5] = "Vendredi";
    this[6] = "Samedi";
  }else{
	this[0] = "Sunday";    this[1] = "Monday";
    this[2] = "Tuesday";   this[3] = "Wednesday";
    this[4] = "Thursday";  this[5] = "Friday";
    this[6] = "Saturday";  
  }
}

function Mois(lang){
  if(lang == 'fr'){
    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";
  }else{
	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";  
  }
}

today = new Date;

function date(lang){
  var semaine=new Semaine(lang);
  var mois=new Mois(lang);
  var myDate=new Date();
  
  annee = today.getFullYear();
  
  var result=semaine[myDate.getDay()]+" "+myDate.getDate()+" "+mois[myDate.getMonth()]+" "+annee;
  document.writeln(result);
}


<!-- FIN DU SCRIPT DATE -->



