/* Updated to remove leading zero on date and day of week     */

/* Not sure how / where this is used, so this is a duplicate  */

/* strictly used in the header.php file for displaying the    */

/* the date in the header area onscreen.											*/

/* TJE																												*/

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)

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("<p>" + montharray[month]+" "+daym+", "+year+"</p>")