// schedule.txt var season = "Spring 2010"; var start_stop = new Array ( "2010012100", "2010060100" ); var tentative = 0; // Order : Women, Men, U19 // Format: [date, // opponent, link, v/@/score, (C)arillon/(E)astwood/(X)canx, highlight var sched = new Array ( ["20 MAR", "Wittenberg", "http://www4.wittenberg.edu/news/athletics/clubsports/rugby/", "v", "", "", "St. Louis Ramblers", "http://www.ramblers.org/", "v", "", "", "NKY", "http://www.gentshsrugby.com/", "21 MAR v", "", ""], ["27 MAR", "Crash Nash Bash", "http://www.nashbashrugby.com/", "@", "", "", "Nash Bash", "http://www.nashbashrugby.com/", "@", "", "", "Indian Springs", "http://www.ohiorugbyunion.org/clubs/clubinfo.asp?ClubID=104", "28 MAR @", "", ""], ["3 APR", "Bowling Green", "http://www.bgsu.edu/studentlife/organizations/womens-rugby/", "@", "", "", "Wolfhounds", "http://www.wolfhoundsrfc.com/", "v", "", "", "off", "", "", "", ""], ["10 APR", "EKU Lexi/Lou Tourney", "http://www.cs.utk.edu/~rose/eku/", "@", "", "", "East. Suburbs", "http://www.clevelandrugby.com/", "@", "", "", "Moeller B", "", "11 APR @", "", ""], ["17 APR", "", "", "MS Walk", "", "", "Louisville", "http://www.louisvillerugby.org/", "MS Walk & 2pm v", "", "", "Northbend", "http://www.ohiorugbyunion.org/clubs/clubinfo.asp?ClubID=40", "18 APR v", "", ""], ["24 APR", "off", "", "", "", "", "Cincinnati Kelts", "http://www.kelts.com/", "@", "", "", "Walnut Hills", "http://www.ohiorugbyunion.org/clubs/clubinfo.asp?ClubID=84", "28 APR @", "", ""], ["1 MAY", "Cincinati", "http://www.kelts.com/", "@", "", "", "Cleveland Rovers", "", "@", "", "", "Moeller A", "", "5 MAY v", "", ""], ["8 MAY", "Scioto Valley", "http://www.svwrfc.com/", "@", "", "", "White River", "http://www.whiteriverrugby.org/", "@", "", "", "off", "", "", "", ""], ["15 MAY", "Indianapolis Hoydens", "http://www.hoydens.org/", "v", "", "", "OPEN (looking to fill)", "", "", "", "", "City Tourney?", "", "15/16 MAY @", "", ""], ["22 MAY", "Ohio University", "http://www.ohio.edu/orgs/wrugby/", "v", "", "", "Huntington", "http://www.wvrugbyfoundation.com/sub.asp?page={B7FA7C59-F0AF-4830-98CF-710D2AE1462C}&subpage={0117F779-BEAE-4CEF-A02C-D2242A333A3E}", "v", "", "", "off", "", "", "", ""], ["29 MAY", "Old Boys", "./oldboysweekend.html", "v WSU", "", "", "Old Boys", "./oldboysweekend.html", "v", "", "", "Old Boys", "./oldboysweekend.html", "Scrimmage @", "", ""] ); 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 ('
'); }