// Match Schedules - After the season, append this file to the file "YYYYschedule.txt" var season = "Spring 2008" var updown = new Array ( "2008031500", "2008053000" ); // Format: [DATE, // WOMEN-OPPONENT, LINK, v/@/SCORE, (C)ARRILON/(E)ASTWOOD/(X)CANX, CELLHIGHLIGHT, // MEN-OPPONENT, LINK, v/@/SCORE, (C)ARRILON/(E)ASTWOOD/(X)CANX, CELLHIGHLIGHT, // U19-OPPONENT, LINK, v/@/SCORE, (C)ARRILON/(E)ASTWOOD/(X)CANX, CELLHIGHLIGHT] (NO COMMA AFTER LAST ELEMENT) var sched = new Array ( ["RECORD", "GF:16 GA:70 (1:2:0)", "", "", "", "", "GF:104 GA:111 (2:2:1)", "", "", "", "", "GF:41 GA:24 (2:1:0)", "", "", "", ""], ["Fri 7 MAR", "DARC Fish Fry", "./fishfry.html", "", "", "reddish", "DARC Fish Fry", "./fishfry.html", "", "", "reddish", "DARC Fish Fry", "./fishfry.html", "", "", "reddish"], ["13 - 16 MAR", "-", "", "", "", "", "Savannah, GA (3rd!!)", "./savannah.html", "@", "", "greenish", "-", "", "", "", ""], ["29 MAR", "-", "", "", "", "", "Indianapolis", "http://www.indianapolisrugbyclub.com/", "v", "X", "", "-", "", "", "", ""], ["5 APR", "President's Cup 13:7 L'ville", "./prescup.html", "", "", "highlight", "President's Cup 12:12 Akron", "./prescup.html", "", "", "highlight", "-", "", "", "", ""], ["12 APR", "Scioto Valley", "http://www.columbusrugby.com/womens.cfm", "0:29 v", "", "", "Toledo", "http://www.toledorugby.com/", "41:28 v", "", "", "-", "", "", "", ""], ["Sun 13 APR", "-", "", "", "", "", "-", "", "", "", "", "Eastside (2pm)", "", "3:10 v", "", ""], ["Wed 16 APR", "-", "", "", "", "", "-", "", "", "", "", "Indian Springs (6pm)", "http://maps.google.com/maps?hl=en&ie=UTF8&q=199+W+Elm+St+Monroe,+OH+45050&fb=1&geocode=12364972173468655886,39.442221,-84.364419&cd=1&ll=39.442499,-84.3644&spn=0.003952,0.010729&t=h&z=17&iwloc=addr", "22:0 v", "", ""], ["19 APR", "Kelts", "http://www.kelts.com", "3:34 @", "", "", "Louisville ", "http://www.louisvillerugby.org", "3:32 (B:19:0) @", "", "", "-", "", "", "", ""], ["Wed 20 APR", "-", "", "", "", "", "-", "", "", "", "", "No. KY (6pm)", "", "v", "", ""], ["26 APR", "-", "", "", "", "", "Scioto Valley", "http://www.sciotorugby.com", "21:34 @", "", "", "-", "", "", "", ""], ["Wed 30 APR", "-", "", "", "", "", "-", "", "", "", "", "Wallnut Hills (6pm)", "http://www.freewebs.com/nutsrugby/", "16:14 @", "", ""], ["3 MAY", "Ohio Championship (Columbus)", "http://www.ohiorugbyunion.org", "@", "", "", "Detroit", "http://www.detroitrugby.org/", "27:5 @", "", "", "-", "", "", "", ""], ["Sun 4 May", "Ohio Camp", "http://www.ohiorugbyunion.org", "@", "", "", "-", "", "", "", "", "Northbend (2pm)", "", "v", "", ""], ["10 MAY", "Detroit", "http://www.detroitrugby.org/", "@", "", "", "Indianapolis/Lexington", "http://www.indianapolisrugbyclub.com/", "v", "", "", "-", "", "", "", ""], ["Sun 11 May", "-", "", "", "", "", "-", "", "", "", "", "Shelbyville (2pm)", "http://www.ohiorugbyunion.org/clubs/clubinfo.asp?ClubID=105", "@", "", ""], ["17 MAY", "Toledo Invitational", "http://www.toledorugby.com/", "@", "", "", "Toledo Invitational", "http://www.toledorugby.com/", "@", "", "", "-", "", "", "", ""], ["23 - 24 MAY", "WSU at Old Boys", "http://www.wright.edu/studentorgs/rugby/", "v", "", "", "Old Boars v Wee Squealers", "./oldboys.html", "", "", "", "-", "", "", "", ""], ["31 MAY", "Pre-Seven's Break", "", "", "", "", "Pre-Seven's Break", "", "", "", "", "Pre-Seven's Break", "", "", "", ""] // Last element and last record are not followed with a comma ',' ) if (( tnow > updown[0] ) && ( tnow < updown[1] )) { 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) + 5] ) document.write (''); } document.write (' '); } document.write ('
'); document.write ( season ); document.write ('
'); document.write (' Directions // Schedule // PDF // Match Reports // Opponents\' Web Sites // DARC Work Sched'); 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 switch ( sched[i][(j * 5) + 4] ) { case "C": document.write (' (Carillon)'); break; case "E": document.write (' (Eastwood)'); break; case "X": document.write ('    CANX '); break; } document.write ('
'); document.write ('
' ); }