// last modified script by Bernhard Friedrich; should work in all browsers
var a;
a=new Date(document.lastModified);
lm_year=a.getYear();lm_year=((lm_year<1000)?((lm_year<70)?2000:1900):0)+lm_year;
lm_month=a.getMonth()+1;lm_month=((lm_month<10)?'0':'')+lm_month;
lm_day=a.getDate();lm_day=((lm_day<10)?'0':'')+lm_day;
update_date=lm_month+'/'+lm_day+'/'+lm_year;


// new script by David W. Young to get current year for copyright display
// regardless of when the document was last modified.
var z;
z=new Date();
copy_year=z.getYear();copy_year=((copy_year<1000)?((copy_year<70)?2000:1900):0)+copy_year;

