    /* This script publishes the current date (without the day of the week)*/    // establish an array for all twelve months    var months = new Array(11);    months[0]="January";    months[1]="February";    months[2]="March";    months[3]="April";    months[4]="May";    months[5]="June";    months[6]="July";    months[7]="August";    months[8]="September";    months[9]="October";    months[10]="November";    months[11]="December";  // establish a variable for a new date    var time = new Date();  // month variable    var month = time.getMonth();  // date variable    var date = time.getDate();  // year variable    var year = time.getFullYear();  // write results for new Date    document.write(months[time.getMonth()] + " ");    document.write(date + ", " + year);