<!--//start of script
//days and months stored in array
var cMonthT = new Array("January","February","March","April","May","June","July","August","September","October","November","December");

//create new date object and extract required values from them
var cTime = new Date();
var cYear = cTime.getYear();
if(cYear<1000)cYear += 1900;
var cMonth = cMonthT[cTime.getMonth()];
var cDate = cTime.getDate();

//concatenate the various date contents
var myDate = cMonth + " " + cDate + ", " + cYear;

//script end -->