// JavaScript Document

function changeDate() {
 
var now = new Date();
 var date = now.getDate();
 var month = now.getMonth();
 var year = now.getYear(); year += (year < 1900) ? 1900 : 0;
var months = new Array(); 
months[0] = "01"; 
months[1] = "02"; 
months[2] = "03"; 
months[3] = "04"; 
months[4] = "05"; 
months[5] = "06"; 
months[6] = "07"; 
months[7] = "08"; 
months[8] = "09"; 
months[9] = "10"; 
months[10] = "11"; 
months[11] = "12"; 
year= year-2000;
if (year<10) {year= "0"+year;}
if (date<10) {date= "0"+date;}
document.write(months[month]+"/01/"+year);
}