<!-- Begin
var months=new Array(13);
months[1]="JAN";
months[2]="FEB";
months[3]="MARCH";
months[4]="APR";
months[5]="MAY";
months[6]="JUNE";
months[7]="JULY";
months[8]="AUG";
months[9]="SEP";
months[10]="OCTR";
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(date + " " + lmonth + " " + year);
document.write(" - ");
document.write(Date( ).substring(10,16) + "</center>");
// End -->






