Sooo....your calender is still on last year, but you still want to know the date? Don't worry! Thanks to this cool calender, you can glance at the date and even add one to your own website! The date is:

Now, would you like to add one to your site, too? It's simple! Just copy and paste this html code onto your site, in any section of the page!

<!--Place this script anywhere in a page.--> <!--NOTE: You do not need to modify this script.--> <SCRIPT LANGUAGE = "JavaScript"> <!-- // Array of day names var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"); var monthNames = new Array("January","February","March","April","May","June","July", "August","September","October","November","December"); var dt = new Date(); var y = dt.getYear(); // Y2K compliant if (y < 1000) y +=1900; document.write(dayNames[dt.getDay()] + ", " + monthNames[dt.getMonth()] + " " + dt.getDate() + ", " + y); // --> </SCRIPT>

Enjoy!