//\//////////////////////////////////////////////////////////////////////////////////
//\  Today's Date 1.0  --  This notice must remain untouched at all times.
//\  Copyright ONLINEMEDIADESIGNS.COM 2004. All rights reserved.
//\
//\
//\  Please give credit on sites that use Today's Date and submit changes of the script
//\  so other people can use them as well. This script is free to use, don't abuse.
//\//////////////////////////////////////////////////////////////////////////////////

<!--
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<b><font color='#6D6C6C' size='2px' face='Tahoma'>"+dayarray[day]+", "+montharray[month]+" "+daym+", "+year+"</font></b>")
//  End -->