<!-- 
function shortMonthArray() {
this[0] = "Jan"; this[1] = "Feb"; this[2] = "Mar"; this[3] = "Apr"; this[4] = "May"; this[5] = "Jun";
this[6] = "Jul"; this[7] = "Aug"; this[8] = "Sep"; this[9] = "Oct"; this[10] = "Nov"; this[11] = "Dec";
return (this);
}
function getLongYear(year){
year = d.getYear();
if (year < 1000)
year+=1900;
return year;
}

function writeDate(){
shortMonths = new shortMonthArray();
d = new Date();
day = d.getDate();
month = d.getMonth();
year = d.getYear();
str = day + " " + shortMonths[month] +". " +getLongYear(year);
document.writeln(str);
}
// -->
