// <script language="JavaScript">

// This script writes the document's date of modification 

// in this format: November 19, 1997.

//

// NOTE: The last.Modified method apparently returns a 2-digit 

// year, regardless of OS date format settings.  This makes it

// non-Y2K compliant

// This script determines the last two digits of the year. If 

// the digits are less than 75, it assumes that the century is 

// 2000. Otherwise, it assumes the century is 1900. This script 

// will be Y2K-compliant until 2075.

//

// Lockheed Martin Corp.  April 21, 1998  rob wildermann



m=new Array("January","February","March","April","May","June","July",

            "August","September","October","November","December");

d=new Date(document.lastModified);

month=

y=d.getYear()

checkDate=(d.getMonth()+1)+"/"+d.getDate()+"/"+y



if (checkDate=="12/31/69") {

	// Date is 12/31/69, must be error

	document.writeln("date unavailable");

}

else  {

	// Date is not 12/31/69, must be valid

//some older versions of Netscape always return 2 digit year
//some other versions of Netscape return years since 1900
//IE returns 2 digits for 19xx and 4 digits for 2xxx

	if (y < 75 ) y=y + 100;
	if (y < 1000 ) y=y + 1900;  


	document.writeln(m[d.getMonth()]+" "+d.getDate()+", "+y);

}





