// JavaScript Document - peripanetic.com
today = new Date
weekDayName = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
monthName = new Array ("January","February","March","April","May","June","July","August","September","October","November","December")
function printDate()
{
document.write("<b class=\"DateFormat\">" + weekDayName[today.getDay()]+ " " + today.getDate()+  " " + monthName[today.getMonth()] + " " + today.getYear()+ "</b>")
}
// insert <SCRIPT LANGUAGE="JAVASCRIPT">printDate()<SCRIPT> into your page to see the date
// class=\"DateFormat\"> needs a definition if it is to do anything!