// schedule.txt var season = "Spring 2012"; var start_stop = new Array ( "2012012700", "2012060600" ); var teamWO = "Women @ 11am"; var teamME = "Men @ 1pm"; var teamBA = "DTN Boys A"; var teamBB = "DTN Boys B"; var teamGI = "DTN Girls"; var teamSP = "SFD Boys"; var tentative = 1; // Order : Women, Men, U19A, U19B, UGirls, USpringfield // Format: [date, // opponent, link, v/@/score, (C)arillon/(E)astwood/(X)canx, highlight var sched = new Array ( ["6 MAR", "Outdor Training", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", ""], ["10 MAR", "Savannah", "http://www.pitchero.com/clubs/savannahshamrocks/news/2012-st-patricks-day-rugby-to-453851.html", "", "", "", "Savannah", "http://www.pitchero.com/clubs/savannahshamrocks/news/2012-st-patricks-day-rugby-to-453851.html", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", ""], ["FRI 16 MAR", "Fish Fry", "./fishfry.html", "", "", "", "Fish Fry", "./fishfry.html", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", ""], ["24 MAR", "Louisville", "http://louisvillewomensrugby.com/", "@", "", "", "Scioto Valley", "http://columbusrugby.com/", "v", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", ""], ["31 MAR", "Nash Bash", "http://www.nashbashrugby.com/", "@", "", "", "Wolfhounds", "http://wolfhoundsrfc.com/", "@", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", ""], ["7 APR", "Easter", "", "", "", "", "Easter", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", ""], ["14 APR", // "Cleveland", "http://clevelandwomensrugby.com/", "v", "", "", "TBD", "", "", "", "", "MW v Minn.", "http://midwestrugby.org/", "@", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", ""], ["21 APR", "Youngstown", "http://www.facebook.com/pages/Youngstown-Womens-Rugby-Club/100306900054123?sk=wall", "@", "", "", "Akron", "http://akronrugby.com/", "v", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", ""], ["28 APR", "-", "", "", "", "", "MW Finals", "http://midwestrugby.org/", "@", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", ""], ["5 MAY", "Ann Arbor", "http://umwrfc.wordpress.com/", "@", "", "", "Rovers", "http://clevelandroversrfc.com/", "@", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", ""], ["12 MAY", "Kelts", "http://www.kelts.com", "v", "", "", "Queen City", "http://www.myspace.com/qcrfc", "v", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", ""], ["19 MAY", // "WSU", "http://www.facebook.com/pages/Wright-State-Womens-Rugby/225145974201407", "@", "", "", "TBD", "", "", "", "", "US 1/8 Finals", "http://midwestrugby.org/", "@", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", ""], ["26 MAY", "WSU (O'Boys)", "./oldboysweekend.html", "", "", "", "Olde Boys fest", "./oldboysweekend.html", "", "", "", "Olde Boys fest", "./oldboysweekend.html", "", "", "", "Olde Boys fest", "./oldboysweekend.html", "", "", "", "Olde Boys fest", "./oldboysweekend.html", "", "", "", "Olde Boys fest", "./oldboysweekend.html", "", "", ""], ["02 JUN", "Warrior Dash", "http://warriordash.com/register2012_ohio.php", "@", "", "", "Warrior Dash", "http://warriordash.com/register2012_ohio.php", "@", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", "", "-", "", "", "", ""] ); 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, U19N = 2, U19S = 3, U19G = 4, U19SP = 5 for ( j = 0; j < 6; 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 (' // Opponents\' Web Sites'); //document.write (' // DARC Work Sched'); document.write ('
'); document.write ('All senior home games are at EASTWOOD METROPARK (NOT the Lake)'); document.write ('
Date'); document.write ( teamWO ); document.write (''); document.write ( teamME ); document.write (''); document.write ( teamBA ); document.write (''); document.write ( teamBB ); document.write (''); document.write ( teamGI ); document.write (''); document.write ( teamSP ); document.write ('
'); // 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 ('
'); }