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");

year=today.getYear();  // Get the year

// Make year display correct in any browser
if (year<1900) year=(year+1900);
else if (year>2000) year=year;

document.write (monthName + " " + today.getDate()+", "+year); //Write the month


