<!--hide script from old browsers
function MakeArray(n) {this.length = n ; return this}
//
var Days = new MakeArray(7)
var Months = new MakeArray(12)
Days[1]="Sunday,"
Days[2]="Monday,"
Days[3]="Tuesday,"
Days[4]="Wednesday,"
Days[5]="Thursday,"
Days[6]="Friday,"
Days[7]="Saturday,"
Months[1]="January"
Months[2]="February"
Months[3]="March"
Months[4]="April"
Months[5]="May"
Months[6]="June"
Months[7]="July"
Months[8]="August"
Months[9]="September"
Months[10]="October"
Months[11]="November"
Months[12]="December"
//
function getDate(theDate) {
 years = theDate.getYear()
 if (years <= 50) {
 //reset year < 1950 - MSIE date problem
 years += 100 ; theDate.setYear(years+1900)
 }
 if ((years > 99) && (years < 200)) {years +=1900}
 return Days[theDate.getDay()+1] + " " + theDate.getDate() + " " +
 Months[theDate.getMonth()+1] + " " + (years) + "."
}
var lastMod = new Date()
var today = new Date()
var year = (today.getYear()+1900)
if (year >= 2100) {year = (year - 1900)}
//
lastMod.setTime(Date.parse(document.lastModified))
document.write('<BR><P ALIGN="CENTER">This page was updated on ')
document.write(getDate(lastMod))
document.write('<BR><BR></P>')
//-- end hiding -->