<!--  menu

function affiche(txt) {
    document.write(txt);
}

function date_jour()
    {var day=new Date();
    day=date_format(day);
    return day;}

function date_format(d1) {
    var m=new Array(13);
    m[1]="Janvier"; m[2]="Février";    m[3]="Mars"; m[4]="Avril"; m[5]="Mai"; m[6]="Juin";
     m[7]="Juillet";    m[8]="Aout"; m[9]="Septembre"; m[10]="Octobre";    m[11]="Novembre"; m[12]="Décembre";
    var d=new Array(8);
    d[1]="Dimanche"; d[2]="Lundi"; d[3]="Mardi"; d[4]="Mercredi"; d[5]="Jeudi"; d[6]="Vendredi"; d[7]="Samedi";
    var mois=m[d1.getMonth()+1];
    var jour=d[d1.getDay()+1];
    var date=d1.getDate();
    var an=d1.getYear();
    if (an<200) an=1900+an;
    date=jour+" "+date+" "+mois+" "+an;
    return date;
    }

function AffHorloge() {
    var d=new Date();
    var heure=d.getHours();
    var min=d.getMinutes();
    var sec=d.getSeconds();
    if (heure<10) heure="0"+heure;
    if (min<10) min="0"+min;
    if (sec<10) sec="0"+sec;
    contenu=heure+":"+min+":"+sec;

    horloge.innerHTML=contenu;
    setTimeout("AffHorloge()",1000);
}

function InitHorloge() {
    document.write("<SPAN id='horloge'; visibility:show'></SPAN>");
    AffHorloge();    
}
    
function ouvrepopup(url, largeur, hauteur, nom)
   {
var win;
var larg;
var haut;
larg=((screen.width-largeur)/2);
haut=((screen.height-hauteur)/2);
win=window.open(url,nom,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,height="+hauteur+",width="+largeur+",left="+larg+",top="+haut+",resizable=no");      
   }

function popupclimato(url, largeur, hauteur, nom)
   {
var win;
var larg;
var haut;
larg=((screen.width-largeur)/2);
haut=((screen.height-hauteur)/2);
win=window.open(url,nom,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,height="+hauteur+",width="+largeur+",left="+larg+",top="+haut+",resizable=no");      
   }
   
function cacheTout() {
    cache('sousmenu1');
    cache('sousmenu2');
    cache('sousmenu3');
    cache('sousmenu4');
    cache('sousmenu5');
}

function montre(id)
{            cacheTout();
                        if (document.getElementById) {document.getElementById(id).style.display="inline";}
                        else if (document.all) {document.all[id].style.display="inline";}
                        else if (document.layers) {document.layers[id].display="inline";}
}

function cache(id)
{
    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";}
 }

// fin menu -->
