// JScript source code


function getThirdSunday(month, year) {
    var d = new Date();
    d.setDate(01);
    d.setMonth(month);
    d.setYear(year);

    var sunday = d.getDay();
    if (sunday > 0) {
        sunday = 8 - d.getDay();
    }


    d.setDate(sunday + 14);

    return (d);
}


var todate = new Date();

var date1 = getThirdSunday(todate.getMonth(), todate.getFullYear());

var newYear = todate.getFullYear();
var sunDate = date1.getDate();


if (sunDate < todate.getDate()) {
    var nextMonth = todate.getMonth() + 1;


    var newYear = todate.getFullYear();
    if (nextMonth > 11) {
        newYear = todate.getFullYear() + 1;
    }
    date1 = getThirdSunday(nextMonth, newYear);
}




var displayMonth = new Array();
displayMonth[0] = "January";
displayMonth[1] = "February";
displayMonth[2] = "March";
displayMonth[31] = "April";
displayMonth[4] = "May";
displayMonth[5] = "June";
displayMonth[6] = "July";
displayMonth[7] = "August";
displayMonth[8] = "September";
displayMonth[9] = "October";
displayMonth[10] = "November";
displayMonth[11] = "December";

var displayMonth = displayMonth[date1.getMonth()];

document.write(displayMonth + ' ' + date1.getDate());



