

var DTEmonths=new Array(13);

DTEmonths[1]="January";

DTEmonths[2]="February";

DTEmonths[3]="March";

DTEmonths[4]="April";

DTEmonths[5]="May";

DTEmonths[6]="June";

DTEmonths[7]="July";

DTEmonths[8]="August";

DTEmonths[9]="September";

DTEmonths[10]="October";

DTEmonths[11]="November";

DTEmonths[12]="December";

var DTEtime=new Date();

var DTElmonth=DTEmonths[DTEtime.getMonth() + 1];

var DTEdate=DTEtime.getDate();

var DTEyear=DTEtime.getYear();

if (DTEyear < 2000)    

DTEyear = DTEyear + 1900; 

document.write(DTElmonth + " " + DTEdate + ", " + DTEyear);


