// JavaScript Document
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;
        }

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 date(){
        var semaine=new Semaine();
        var mois=new Mois();
        var myDate=new Date();
        var result1=semaine[myDate.getDay()]+"&nbsp;";
        var result2=myDate.getDate()+"&nbsp;"+mois[myDate.getMonth()]+" ";
        document.writeln(result1+"<span>"+result2+"</span></a>");
    	}

function date_new_tetiere(){
        var semaine=new Semaine();
        var mois=new Mois();
        var myDate=new Date();
        var result1=semaine[myDate.getDay()]+"&nbsp;";
        var result2=myDate.getDate()+"&nbsp;"+mois[myDate.getMonth()]+" ";
        document.writeln(result1+"<span>"+result2+"</span></a>");
}


function openWin( windowURL, windowName, windowFeatures ) { 
        return window.open( windowURL, windowName, windowFeatures ) ; 
		}

navvers = navigator.appVersion.substring(0,1);
if (navvers > 3)
	navok = true;
else
	navok = false;

today = new Date;
jour = today.getDay();
numero = today.getDate();
if (numero<10)
	numero = "0"+numero;

mois = today.getMonth();
if (navok)
	annee = today.getFullYear();
else
	annee = today.getYear();

TabMois = new Array("Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre");
messageDate = + numero + " " + TabMois[mois] + " ";