// JavaScript Document

function update() {
myD       = new Date();

myYear    = myD.getYear();
myYear4   = (myYear < 2000) ? myYear+1900 : myYear;
myMonth   = myD.getMonth() + 1;
myDate    = myD.getDate();

myMess   = myYear4 + "/" + myMonth + "/" + myDate;
document.write( myMess );

}