lastmoddate = new Date()
lastmoddate.setTime(Date.parse(document.lastModified))
if(lastmoddate > 0) {
	var y = lastmoddate.getFullYear()
	var m = lastmoddate.getMonth() + 1
	var d = lastmoddate.getDate()
	document.writeln(y + ((m < 10) ? "-0" : "-") + m + ((d < 10) ? "-0" : "-") + d)
}

