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 Annee=myDate.getYear()


           // Pour Netscape: bug de l'an 2000 !
           if ( Annee < 1900 ) Annee += 1900;

           var result=semaine[myDate.getDay()]+" "+myDate.getDate()+" "+
                      mois[myDate.getMonth()]+" "+Annee;

           document.writeln(result);
           }
resol = screen.availWidth+"×"+screen.height+" pixels";
fenetre = this.window.width+"×"+this.window.height+" pixels";
if (screen.colorDepth != null) 
	{ colors=("en " + Math.pow(2,screen.colorDepth) + " couleurs (" + screen.colorDepth + "&nbsp;bits)"); }
now = new Date();
if (navigator.appName != "")
	{ navigateur = navigator.appName; }
else
	{ navigateur = "inconnu".italics(); }
if (navigator.appVersion !="")
	{ navigversion = navigator.appVersion; }
else
	{ navigversion = "inconnue".italics(); }
java=navigator.javaEnabled();
if (java = true)
	{ navigjava = "Java est activé"; }
else
	{ (navigjava = "Java est désactivé"); }
var visites=history.length;

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 Annee=myDate.getYear()

	// Pour Netscape: bug de l'an 2000 !
	if ( Annee < 1900 ) Annee += 1900;

	var result=semaine[myDate.getDay()]+" "+myDate.getDate()+" "+
			  mois[myDate.getMonth()]+" "+Annee;
	
	document.writeln(result);
}