<!--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('<P ALIGN="CENTER">')
document.write('<FONT SIZE="-1" COLOR="#000000" FACE="arial,geneva">')
document.write('© Copyright ' + year + ' by ')
document.write('Troop 1035 - All Rights Reserved.')
document.write('<BR>')
document.write('<FONT SIZE="1"> Site designed by Designing Places')
document.write('</B>')
document.write('</FONT></P>')
document.write('<FONT SIZE="1"> This is an unofficial production not associated with the Hawkeye Area Council or Boy Scouts of America websites. The site was created for the sole purpose of keeping T1035, 2001 National Scout Jamboree participants, family and friends informed.')
document.write('</FONT></P>')
document.write('<FONT SIZE="-2" COLOR="#F74200" FACE="arial,geneva">')
document.write('<CENTER><B>Last updated on ')
document.write(getDate(lastMod))
document.write('<BR><BR></B></CENTER>')
//-- end hiding -->
