<!--
<!--
<!-- Hide the script from non-Javascript browsers
/*** Feel free to use this script, just leave these comment lines. ***/
/***         Goetz's Calendar copyright 1998 Lawrence Goetz       ***/
/***         goetz@dorsai.org http://pages.prodigy.com/goetz     ***/
var date_statement="";
var time_statement="";
var today=new Date();
var month="";
var day="";
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";
        }
        document.day=""
         if(day_of_week==0)
                document.day="Sunday";
        if(day_of_week==1)
                document.day="Monday";
        if(day_of_week==2)
                document.day="Tuesday";
        if(day_of_week==3)
                document.day="Wednesday";
        if(day_of_week==4)
                document.day="Thursday";
        if(day_of_week==5)
                document.day="Friday";
        if(day_of_week==6)
                document.day="Saturday";
}

function time_of_day() {
        var time=today.getHours();
        time_statement="";
        //if(time>=5 && time<=11)
        if(time>=0 && time<=11)
        //      time_statement="Good Morning.";
                time_statement="Good Morning!";
        if(time>11 && time<=17)
                time_statement="Good Afternoon.";
        //if(time>17 || time<5)
        if(time>17 && time<23)
                time_statement="Good Evening.";
}

//-->
