/* moddate.js
 * by Frank Caggiano
 * Copyright (c) 2000 Frank Caggiano. All Rights Reserved.
 *
 */

function moddate() {
  
    update = new Date(document.lastModified)
    theMonth = update.getMonth() + 1
    theDate = update.getDate()
    theYear = update.getYear()
    if (theYear < 100) {
      theYear += 2000; //IE
    } else if (theYear < 1900) { // NS
      theYear += 1900;
    }

    document.writeln("Last Modified: " + theMonth + "/" + theDate + "/" + theYear);

    document.writeln("(Month/Day/Year)<BR>");
    document.writeln('&copy <A HREF="MAILTO:caggiano@crystal-objects.com?subject=index.html">Frank M. Caggiano</a>');
}
