//01/20/01, ffl, lst_up4.js
//Some browsers suffer from a Y2K bug. This script
//compensates.

<!-- Engage Cloking Device
x = 0, y = 0
var date = new Date(document.lastModified);
if ((date.getYear()) > 99) x = 100;
if ((date.getYear()) > 1999) y = 1900;
document.write("Last Updated: "+(date.getMonth()+1)+ "-" + date.getDate()+ "-" + (date.getYear() - x - y + 2000)+ "");
// Drop Cloak -->
