// training.txt var boxflag = 1; var season = new Array ( ["Winter", "0120", "0301", "Indoor"], ["Spring", "0301", "0523", "15"], ["Sevens", "0524", "0731", "7"], ["Autumn", "0716", "1111", "15"], ["Touch", "1206", "1231", "Social Season"] ); var training = new Array ( ["Men", "Winter BLOCK", "15 JAN", "Stebbins H.S. Gym", "Tuesday/Thursday", "8:00 p.m. - 9:30 p.m.", "./directions/map-stebbins.gif"], ["Men", "Spring", "15 MAR", "Eastwood MetroPark", "Tuesday/Thursday", "5:30 p.m. - 8:00 p.m.", "./directions/dayton-eastwood.html"], ["Women", "Spring", "22 MAR", "Eastwood MetroPark", "Tuesday/Thursday", "5:30 p.m. - 8:00 p.m.", "./directions/dayton-eastwood.html"], ["U19 Girls", "Spring", "10 MAR", "Eastwood MetroPark", "Monday/Wednesday", "4:30 p.m. - 6:00 p.m.", "./directions/dayton-eastwood.html"], ["U19 Boys", "Spring", "7 MAR", "Eastwood MetroPark", "Monday/Wednesday", "4:30 p.m. - 6:00 p.m.", "./directions/dayton-eastwood.html"], ["Men / Women / U19", "Sevens", "26 MAY", // "Eastwood Metropark LAKE", "Eastwood Metropark (NOT the Lake)", "Tuesday/Thursday", "6:30 p.m. - 8:00 p.m.", "./directions/dayton-eastwood.html"], ["Men / Women", "Autumn", "3 AUG", "Eastwood MetroPark (NOT THE LAKE)", "Tuesday/Thursday", "6:30 p.m. - 8:00 p.m.", "./directions/dayton-eastwood.html"] ); // Title for ( i = 0; i < season.length; i++ ) { // Check the SEASON start/stop dates if (( season[i][1] < tmd ) && ( tmd < season[i][2] )) { if ( boxflag ) { document.write ('
 '); boxflag = 0; } // Pass WHO and WHEN this_season = season[i][0]; start_season = training[i][2]; // Make it pretty document.write ( season[i][0] + ' Training '); if (( season[i][3] == "7" ) || ( season[i][3] == "15" )) document.write ('( ' + season[i][3] + '-a-side Rugby ) '); else document.write ('(' + season[i][3] + ') ' + tyear ); } } document.write ('
'); // Training table document.write ('') for ( i = 0; i < training.length; i++ ) { if ( training[i][1] == this_season ) { document.write (''); // Venue with (link) document.write (''); // Days document.write (''); // Time document.write (''); } } document.write ('
 '); // Men / Women / U19 document.write ( training[i][0] ) // Start Date - Highlighted document.write (' Begins '); document.write ( training[i][2] ); document.write (' '); document.write ('' + training[i][3] ); if ( training[i][6] ) { document.write (' ( Link )'); } document.write ('' + training[i][4] + '' + training[i][5] + '
'); // Excuses... // document.write ('
Due to the fact that the Earth is on a 23.5 degree tilt of its axis and [revolving] around a large ball of four Hydrogen
protons fusing into one Helium atom that emits photons that light our planet we will be moving practice up to 6:00 pm.
'); document.write ('
');