var date_statement="";
var today=new Date();
var month="";

function todays_date() {
        var month=today.getMonth();
        var day_of_week=today.getDay();
        date_statement=""
        document.month=""
        month++; // So it's now between 1 - 12.
     if(month==1) {
               // january(today.getDate());
                document.month="Janvier";
        }
        if(month==2) {
                //february(today.getDate());
                document.month="Février";
        }
        if(month==3) {
              //  march(today.getDate());
                document.month="Mars";
        }
        if(month==4) {
                //april(today.getDate());
                document.month="Avril";
        }
        if(month==5) {
              //  may(today.getDate());
                document.month="Mai";
        }
        if(month==6) {
               // june(today.getDate());
                document.month="Juin";
        }
        if(month==7) {
               // july(today.getDate());
                document.month="Juillet";
        }
        if(month==8) {
               // august(today.getDate());
                document.month="Aout";
        }
        if(month==9) {
                //september(today.getDate());
                document.month="Septembre";
        }
        if(month==10) {
               // october(today.getDate());
                document.month="Octobre";
        }
        if(month==11) {
                //november(today.getDate());
                document.month="Novembre";
        }
        if(month==12) {
               // december(today.getDate());
                document.month="Décembre";
        }

     
}

function time_of_day() {

        var time=today.getHours();

        time_statement=""
        if(time>=0 && time<12)
                time_statement="Good Morning."

        if(time>=12 && time<18)
                time_statement="Good Afternoon."

        if(time>=18 || time<0)
                time_statement="Good Evening."
}
// -- End Hiding Here -->

<!-- Hide the script from non-Javascript browsers-->

time_of_day();
todays_date();

document.writeln(document.month+" "+today.getDate()+","+today.getYear())


// -- End Hiding Here -->
