<!--

var time=new Date();
var theday='';
var theyear='';
var thesup="th";
var cText=''
var runTime=new Date();
var months=new Array(13);
months[1]="January";
months[2]="February";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";

theday = time.getDate();
cText += theday;
cText += '<sup style="line-height: 0;font-size:75%">';
if ((theday == 1) || (theday == 21) || (theday == 31)) {
thesup = "st";
}
if ((theday == 2) || (theday == 22)) {
thesup = "nd";
}
if ((theday == 3) || (theday == 23)) {
thesup = "rd";
}
cText += thesup;
cText += '</sup> ';
cText += months[time.getMonth() + 1];
cText += ' ';
theyear = time.getYear();
if (theyear < 2000) 
theyear = theyear + 1900;
cText += theyear;

document.write(cText); 
//-->
