// JavaScript Document

var now = new Date();
thisYear = now.getYear();
if(thisYear < 1900) {thisYear += 1900};
thismonth= now.getMonth()+1;
document.write(now.getDate() + "/" + thismonth + "/" + thisYear);