
Update = new Date(document.lastModified)
Month = Update.getMonth() + 1; Month += ""
CDate = Update.getDate() + ""
Year = Update.getYear() + ""
if (Month.length < 2) { Month = "0" + Month }
if (CDate.length < 2) { CDate = "0" + CDate }
if (Year.length < 2) { Year = "0" + Year }

ylen = Year.length - 2
Year = Year.substring(ylen)

document.write("<blockquote><blockquote><div align=\"right\"><font color=\"#77bbaa\"><I>Last Updated: ", Month, "/", CDate, "/", Year, "</I></font></div></blockquote></blockquote>")
