// This script returns, at the location in a document
// where it is invoked, the document's date of modification 
// in this format: 11/19/97.
//
// NOTE: This Javascript routine is a modification of datemod.js.
// It finesses the Y2K problems of datemod.js by omitting the century
// from the date.
//
// (c) Lockheed Martin Corp.  April 21, 1998  (RBX)

LastModDate=new Date(document.lastModified);
y=LastModDate.getYear()
m=LastModDate.getMonth()
d=LastModDate.getDate()


while (y>99) y=y-100;// no matter what wacky number the browser comes back with, keep taking away a hundred until it's back to 2 digits

if (y<10) { // add a placeholder zero because netscape displays as just one number
	moreZero=0;
	document.writeln((m+1)+"/"+d+"/"+moreZero+y);
}
else {
	document.writeln((m+1)+"/"+d+"/"+y);
}
