<!--Hide from browsers that do not support JavaScript// Get the current datetoday = new Date();// Get the current monthmonth = today.getMonth();// Attach a display name to the month numberswitch (month) {						case 0 :															displayMonth = "January"															break						case 1 :															displayMonth = "February"															break						case 2 :															displayMonth = "March"															break						case 3 :															displayMonth = "April"															break						case 4 :															displayMonth = "May"															break						case 5 :															displayMonth = "June"															break						case 6 :															displayMonth = "July"															break						case 7 :															displayMonth = "August"															break						case 8 :															displayMonth = "September"															break						case 9 :															displayMonth = "October"															break						case 10 :															displayMonth = "November"															break						case 11 :															displayMonth = "December"															break						default: displayMonth = "INVALID"}document.writeln(displayMonth + " " + today.getDate() + ", "																											+ today.getFullYear());// stop hiding -->