function LastModified()
  {
    lastModDate = new Date(document.lastModified)
    lastModMonth = lastModDate.getMonth() + 1
    lastModDay = lastModDate.getDate()
    if (lastModDate.getYear() < 100 ) {
      lastModYear = lastModDate.getYear() + 2000
      }
    else { if (lastModDate.getYear() < 1999 ) {
      lastModYear = lastModDate.getYear() + 1900
      }
    else { 
      lastModYear = lastModDate.getYear()
      } }
    var lastUpdated = "" + "  <font size=-1>(Last Modified:  " + lastModMonth + "/" + lastModDay + "/" + lastModYear + ")</font>"
    return lastUpdated
  }

