MyDate=new Date();
MyYear=MyDate.getYear();
MyMonth=MyDate.getMonth()+1;
MyDay=MyDate.getDate();
document.writeln(MyYear,'/',MyMonth,'/',MyDay);
