function MakeArray(n) {this.length = n ; return this}
//
var Months = new MakeArray(12)
Months[1]="Jan"
Months[2]="Feb"
Months[3]="Mar"
Months[4]="Apr"
Months[5]="May"
Months[6]="Jun"
Months[7]="Jul"
Months[8]="Aug"
Months[9]="Sep"
Months[10]="Oct"
Months[11]="Nov"
Months[12]="Dec"
//
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() + " " +
 return 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('<div class="houseKeepingText">Copyright &copy; ')
document.write(year + ' Footprints Tours Ltd<br>')
document.write('Programming &amp; design by Green Kiwi Ltd<br>')
document.write('Last updated: ')
document.write(getDate(lastMod))
document.write('</div>')
//-- end hiding -->
