// Script to put copyright and modified date into a page


// Get last-modified date of document--provided to browser by web server via HTTP
var DocDate = new Date( document.lastModified );


// Convert messed-up Navigator year (i.e. 2002 = 102 !) to a proper four-digit year
function YearSafe( Y )
{
	return Y < 200 ? Y + 1900 : Y;
}


// Write the copyright notice (using the modified date, not current date)
document.write(
	 '&copy; '
	+ YearSafe( DocDate.getYear() ) 
	+' Palomar R/C Flyers <BR>\n' );


// Write the modified date (as mm/dd/yy)
document.write(
	 'Updated '
	+ document.lastModified.substring( 0, document.lastModified.length - 9 )
	+'<BR>\n' );

