var updated;
var update = new Date(document.lastModified);
var months = new Array(11) ;

var month = update.getMonth();
var date = update.getDate();
var year = update.getYear();
if  (year <= 99)   {
                year = year + 2000;
}
update = null;

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";

updated = date + "/" +  months[month] + "/" + year;

