<!--
/*
Today's date script
Visit java-scripts.net or 
http://wsabstract.com for this script
*/

 var dayName = new Array ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat")

 var monName = new Array ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec")

 var now = new Date

 document.write("" + dayName[now.getDay()] + ", " + monName[now.getMonth()] + " "+now.getDate() + ", "+now.getYear() + "")

//-->