// JavaScript Document


//anglais


today = new Date;

function month(){
           this[0] = "January";    this[1] = "Febuary";
           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";
           }

function date_en(){
        var mois=new month();
        var myDate=new Date();
        annee = today.getFullYear();
  

        var result=mois[myDate.getMonth()]+" "+myDate.getDate()+", "+annee;
        document.writeln(result);
    }




//francais


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_fr(){
        var mois=new Mois();
        var myDate=new Date();
        annee = today.getFullYear();
  

        var resultfr=myDate.getDate()+" "+mois[myDate.getMonth()]+", "+annee;
        document.writeln(resultfr);
    }
        function openWin( windowURL, windowName, windowFeatures ) { 
                return window.open( windowURL, windowName, windowFeatures ) ; 
        } 
