update = new Date(document.lastModified)
theYear = update.getFullYear();
theMonth = "" + ( update.getMonth() + 1 );
if ( theMonth.length == 1 ) {
	theMonth = "0" + theMonth;
}
theDate = "" + update.getDate();
if ( theDate.length == 1 ) {
	theDate = "0" + theDate;
}
document.write(
	( theYear + "." + theMonth + "." + theDate ).bold().fontcolor("yellow")
);


