// schedule.txt var season = "Autumn 2010"; var start_stop = new Array ( "2010072100", "2010111100" ); var tentative = 0; // Order : Women, Men, U19 // Format: [date, // opponent, link, v/@/score, (C)arillon/(E)astwood/(X)canx, highlight var sched = new Array ( ["28 AUG", "Scioto Valley B", "http://www.svwrfc.com/", "@", "", "", "-", "", "", "", "", "-", "", "", "", ""], ["4 SEP", "-", "", "", "", "", "Scioto Valley", "http://www.sciotorugby.com/", "v", "", "", "-", "", "", "", ""], ["11 SEP", "Kelts", "http://www.kelts.com/", "@", "", "", "-", "", "", "", "", "-", "", "", "", ""], ["18 SEP", "Cleveland Iron Maidens", "http://www.myspace.com/cwrfc", "@", "", "", "Toledo", "http://www.toledorugby.com/", "@", "", "", "-", "", "", "", ""], ["25 SEP", "Indianapolis Hoydens", "http://www.hoydens.org/", "v", "", "", "Toledo", "http://www.toledorugby.com/", "v", "", "", "-", "", "", "", ""], ["2 OCT", "Lexington", "http://www.blackwidowrugby.com/", "@", "", "", "Lexington", "", "@", "", "", "-", "", "", "", ""], ["9 OCT", "Louisville", "http://www.louisvillewomensrugby.com/", "v", "", "", "Buffalo", "http://buffalorugby.org/", "v", "", "", "-", "", "", "", ""], ["16 OCT", "(MW Playoffs)", "http://www.midwestrugby.org/10womensdivision2conference.htm", "", "", "", "Michiana", "http://www.michianarugby.org/", "@", "", "", "-", "", "", "", ""], ["23 OCT", "Northside", "", "v", "", "", "Lexington", "", "v", "", "", "-", "", "", "", ""], ["30 OCT", "Akron", "http://www.akronrugby.com/", "v", "", "", "-", "", "v", "", "", "-", "", "", "", ""] ); if (( tnow > start_stop[0] ) && ( tnow < start_stop[1] )) { document.write (''); document.write (''); document.write (''); document.write (''); document.write (''); for ( i = 0; i < sched.length ; i++ ) { document.write (''); // Loop: Women = 0 , Men = 1, U19 = 2 for ( j = 0; j < 3; j++ ) { // Check for cell highlighting if ( sched[i][(j * 5) + 6] ) document.write (''); } document.write ('
'); if ( tentative ) { document.write (' - '); document.write ( season ); document.write (' - '); } else document.write ( season ); document.write ('
'); document.write ('Directions'); document.write (' // Schedule'); //document.write (' // PDF'); //document.write (' // Match Reports'); document.write (' // Opponents\' Web Sites'); //document.write (' // DARC Work Sched'); document.write ('
'); document.write ('All home games are at EASTWOOD METROPARK (NOT the lake)'); document.write ('
Date   Women (k.o. 11:00 a.m.)   Men (k.o. 1:00 p.m.)   U19 (Spring only)
'); // Date document.write ( sched[i][0] ); document.write ('  '); else document.write ('   '); // v/@/score if (sched[i][(j * 5) + 4] == "X") document.write ('') document.write ( sched[i][(j * 5) + 3] + ' '); // Link if ( sched[i][(j * 5) + 2] ) document.write (''); // Venue document.write ( sched[i][(j * 5) + 1] + ''); // Carillon / Eastwood / WSU if ( sched[i][(j * 5) + 4] ) document.write (' ('); switch ( sched[i][(j * 5) + 4] ) { case "C": document.write ('Carillon'); break; case "E": document.write ('Eastwood'); break; case "W": document.write ('WSU'); break; case "X": document.write ('  CANX '); break; } if ( sched[i][(j * 5) + 4] ) document.write (')'); } document.write ('
'); document.write ('
'); }