<!-- hide code

/*
 * Y2K bug fix - Ed Ashway 1999/12/30 Copyright (c) 1999 Ed Ashway, Ashway Consulting, LLC
 */

function show_date(){
                var d = new Date();
                var day   = d.getDay(),
                        month = d.getMonth(),
                        date  = d.getDate(),
                        year  = d.getYear();

                if( day == 0 )
                        document.write("Sunday, ");
                else if( day == 1 )
                        document.write("Monday, ");
                else if( day == 2 )
                        document.write("Tuesday, ");
                else if( day == 3 )
                        document.write("Wednesday, ");
                else if( day == 4 )
                        document.write("Thursday, ");
                else if( day == 5 )
                        document.write("Friday, ");
                else if( day == 6 )
                        document.write("Saturday, ");

                if( month == 0 )
                        document.write("January ");
                else if( month == 1 )
                        document.write("February ");
                else if( month == 2 )
                        document.write("March ");
                else if( month == 3 )
                        document.write("April ");
                else if( month == 4 )
                        document.write("May ");
                else if( month == 5 )
                        document.write("June ");
                else if( month == 6 )
                        document.write("July ");
                else if( month == 7 )
                        document.write("August ");
                else if( month == 8 )
                        document.write("September ");
                else if( month == 9 )
                        document.write("October ");
                else if( month == 10 )
                        document.write("November ");
                else if( month == 11 )
                        document.write("December ");

                document.write(date + ", ");

                document.write( (year < 2000) ? (1900 + year) : (year) );
        }

// end code hiding -->