function lastm() {
	lastmod = new Date(document.lastModified);
	lastmodsegs = Date.parse(lastmod);   
	if(lastmodsegs == 0){               
	   document.writeln("(data desconhecida)");
	   } else { 
		if (lastmod.getYear()<2000) {
		   document.writeln(lastmod.getDate() + "/" + (lastmod.getMonth()+1) + "/" + (1900+lastmod.getYear()));
		   } else {
		   document.writeln(lastmod.getDate() + "/" + (lastmod.getMonth()+1) + "/" + lastmod.getYear());
		   }
    
	}
}
