

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="January";
        }
        if(month==2) {
                //february(today.getDate());
                document.month="February";
        }
        if(month==3) {
              //  march(today.getDate());
                document.month="March";
        }
        if(month==4) {
                //april(today.getDate());
                document.month="April";
        }
        if(month==5) {
              //  may(today.getDate());
                document.month="May";
        }
        if(month==6) {
               // june(today.getDate());
                document.month="June";
        }
        if(month==7) {
               // july(today.getDate());
                document.month="July";
        }
        if(month==8) {
               // august(today.getDate());
                document.month="August";
        }
        if(month==9) {
                //september(today.getDate());
                document.month="September";
        }
        if(month==10) {
               // october(today.getDate());
                document.month="October";
        }
        if(month==11) {
                //november(today.getDate());
                document.month="November";
        }
        if(month==12) {
               // december(today.getDate());
                document.month="December";
        }

     
}

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 -->
