<!--
<!--
<!-- 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="Jan";
        }
        if(month==2) {
                //february(today.getDate());
                document.month="Feb";
        }
        if(month==3) {
                //march(today.getDate());
                document.month="Mar";
        }
        if(month==4) {
                //april(today.getDate());
                document.month="Apr";
        }
        if(month==5) {
                //may(today.getDate());
                document.month="May";
        }
        if(month==6) {
                //june(today.getDate());
                document.month="Jun";
        }
        if(month==7) {
                //july(today.getDate());
                document.month="Jul";
        }
        if(month==8) {
                //august(today.getDate());
                document.month="Aug";
        }
        if(month==9) {
                //september(today.getDate());
                document.month="Sep";
        }
        if(month==10) {
                //october(today.getDate());
                document.month="Oct";
        }
        if(month==11) {
                //november(today.getDate());
                document.month="Nov";
        }
        if(month==12) {
                december(today.getDate());
                document.month="December";
        }
        document.day=""
         if(day_of_week==0)
                document.day="Sun";
        if(day_of_week==1)
                document.day="Mon";
        if(day_of_week==2)
                document.day="Tue";
        if(day_of_week==3)
                document.day="Wed";
        if(day_of_week==4)
                document.day="Thu";
        if(day_of_week==5)
                document.day="Fri";
        if(day_of_week==6)
                document.day="Sat";
}
function january(date) {
        if(date==1)
                date_statement="Happy New Year!";

}
function february(date) {
}
function march(date) {

}
function april(date) {
}
function may(date) {
}
function june(date) {
}
function july(date) {
}
function august(date) {
}
function september(date) {
}
function october(date) {
}
function november(date) {
}
function december(date) {
}
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";
}

//-->
