// fundraising.txt var fr_event = "Fundraising Events" var fr_year = "2011"; var start_stop = new Array ( "2011012900", "2011103100" ); var fr_sched = new Array ( ["DATE", "VENUE", "EVENT", "MAP", "WEB LINK", "", ""], ["5 FEB", "Columbus", "AleFest", "", "", "", ""], ["5 MAR", "Dayton Masonic Center", "Ale FEAST", "", "", "", ""], ["18 MAR", "Dayton", "Fish Fry", "", "Fish Fry", "", "./fishfry.html"], ["18 APR", "Wilmington", "Volleyball Setup", "", "", "", ""], ["19 AUG", "Dayton", "Monte Carlo", "", "Monte Carlo", "", "./montecarlo.html"], ["27 AUG", "Kettering Carillon Park", "AleFest", "", "AleFest", "", "http://www.alefest.com"], ["9 OCT", "Orgonia", "Hill Climb Cleanup", "","Hill Climb", "", "http://www.daytonmc.com/index.php?option=com_content&view=article&id=45&Itemid=50"], ["16 OCT", "Orgonia", "Hill Climb Cleanup", "","Hill Climb", "", "http://www.daytonmc.com/index.php?option=com_content&view=article&id=45&Itemid=50"], ["9 NOV", "Dayton", "Hauntfest Cleanup", "", "HauntFest", "", "http://www.oregondistrict.org/events/event_info.asp?EventID=40&PageName=Events"] ); if (( tnow > start_stop[0] ) && ( tnow < start_stop[1] )) { document.write ('
' + fr_event + ' - ' + fr_year + '

'); document.write (''); for ( i = 0; i < fr_sched.length ; i++ ) { document.write (''); for ( j = 0; j < 5; j++ ) { // map link document.write (''); } } document.write ('
'); if (( j == 3 ) && (fr_sched[i][5] != "")) { document.write ('
MAP
'); } // event link if (( j == 4 ) && ( fr_sched[i][6] != "")) { document.write ('
'); } // event document.write ( fr_sched[i][j] ); // close link if ((( j == 3 ) && ( fr_sched[i][3] )) || (( j == 4 ) && ( fr_sched[i][4] ))) { document.write (''); } document.write ('
'); } document.write ('
');