<!--
var today=new Date();
if (today.getDay() == 0) {document.write("Sunday,")}
if (today.getDay() == 1) {document.write("Monday,")}
if (today.getDay() == 2) {document.write("Tuesday,")}
if (today.getDay() == 3) {document.write("Wednesday,")}
if (today.getDay() == 4) {document.write("Thursday,")}
if (today.getDay() == 5) {document.write("Friday,")}
if (today.getDay() == 6) {document.write("Saturday,")}

if (today.getMonth() == 0) {document.write("&nbsp;January ")}
if (today.getMonth() == 1) {document.write("&nbsp;February ")}
if (today.getMonth() == 2) {document.write("&nbsp;March ")}
if (today.getMonth() == 3) {document.write("&nbsp;April ")}
if (today.getMonth() == 4) {document.write("&nbsp;May ")}
if (today.getMonth() == 5) {document.write("&nbsp;June ")}
if (today.getMonth() == 6) {document.write("&nbsp;July ")}
if (today.getMonth() == 7) {document.write("&nbsp;August ")}
if (today.getMonth() == 8) {document.write("&nbsp;September ")}
if (today.getMonth() == 9) {document.write("&nbsp;October ")}
if (today.getMonth() == 10) {document.write("&nbsp;November ")}
if (today.getMonth() == 11) {document.write("&nbsp;December ")}
document.write(today.getDate()); 
// -->