today=new Date(); // Initialize Date in raw form
month=today.getMonth()+1; // Get the month

// Make month number correspond to month name
if (month==1) monthName=("JANUARY");
else if (month==2) monthName=("FEBRUARY");
else if (month==3) monthName=("MARCH");
else if (month==4) monthName=("APRIL");
else if (month==5) monthName=("MAY");
else if (month==6) monthName=("JUNE");
else if (month==7) monthName=("JULY");
else if (month==8) monthName=("AUGUST");
else if (month==9) monthName=("SEPTEMBER");
else if (month==10) monthName=("OCTOBER");
else if (month==11) monthName=("NOVEMBER");
else monthName=("DECEMBER");