datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
themonth = datetoday.getMonth();
if (themonth < 1) display = "January";
else if (themonth < 2) display = "February";
else if (themonth < 3) display = "March";
else if (themonth < 4) display = "April";
else if (themonth < 5) display = "May";
else if (themonth < 6) display = "June";
else if (themonth < 7) display = "July";
else if (themonth < 8) display = "August";
else if (themonth < 9) display = "September";
else if (themonth < 10) display = "October";
else if (themonth < 11) display = "November";
else if (themonth < 12) display = "December";
else display = "";
var greeting = ("" + display +"");
document.write(greeting);
