<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var months=new Array(13);
months[1]="Jan";
months[2]="Feb";
months[3]="Mac";
months[4]="Apr";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="Aug";
months[9]="Sept";
months[10]="Oct";
months[11]="Nov";
months[12]="Dec";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)
year = year + 1900;
document.write("<right>" + "<font size=3 color=#003366><font>"+lmonth + "<font size=3 color=#003366><font>" + " "  + date  +"<font size=3 color=#003366><font>"+ " ");
document.write(year + "</center>");
// End -->