// sixnations.txt var sixnwebsite = "http://www.rbs6nations.com/" var sixnupdown = new Array ( "2009020100", "2009032400" ); var sixnvenues = new Array ( ["England", "Twickenham"], ["Ireland", "Croke Park"], ["Scotland", "Murrayfield"], ["France", "Stade de France"], ["Wales", "Millennium Stadium"], ["Italy", "Stadio Flaminio"] ); // Format: [date, home, away, scores, start] var sixnsched = new Array ( ["7 FEB", "England", "Italy", "36:11", "15:00"], ["7 FEB", "Ireland", "France", "30:21", "17:00"], ["8 FEB", "Scotland", "Wales", "13:26", "16:00"], ["14 FEB", "France", "Scotland", "22:13", "16:00"], ["14 FEB", "Wales", "England", "23:15", "17:30"], ["15 FEB", "Italy", "Ireland", " 9:38", "15:30"], ["27 FEB", "France", "Wales", "21:16", "21:00"], ["28 FEB", "Scotland", "Italy", "26:6", "15:00"], ["28 FEB", "Ireland", "England", "14:13", "17:30"], ["14 MAR", "Italy", "Wales", "15:20", "16:00"], ["14 MAR", "Scotland", "Ireland", "15:22", "17:00"], ["15 MAR", "England", "France", "34:10", "15:00"], ["21 MAR", "Italy", "France", "8:50", "14:15"], ["21 MAR", "England", "Scotland", "26:12", "15:30"], ["21 MAR", "Wales", "Ireland", "15:17", "17:30"] ) if (( tnow > sixnupdown[0] ) && ( tnow < sixnupdown[1] )) { document.write (' '); document.write (' '); document.write (''); for ( i = 0; i < sixnsched.length ; i++ ) { // Alternate row colors if ( i % 2 ) document.write (''); else document.write (''); // Date document.write (''); // Home team document.write (''); // v/score document.write (''); // Away team document.write (''); // Venue document.write (''); // Time document.write (''); // Close the row document.write (' '); } document.write ('
'); document.write ('RBS Six Nations - '); document.write ( tyear ); document.write (' ( link )
'); document.write ('Date'); document.write (''); document.write ('Home'); document.write (''); document.write (''); document.write (''); document.write ('Away'); document.write (''); document.write ('Venue'); document.write (''); document.write ('Start'); document.write ('
'); document.write ( sixnsched[i][0] ); document.write (''); document.write ( sixnsched[i][1] ); document.write (''); if ( sixnsched[i][3] ) { document.write ( sixnsched[i][3] ) } else document.write (' v '); document.write (''); document.write ( sixnsched[i][2] ); document.write (''); for ( k = 0; k < sixnvenues.length; k++ ) { if ( sixnsched[i][1] == sixnvenues[k][0] ) document.write ( sixnvenues[k][1] ); } document.write (''); document.write ( sixnsched[i][4] ); document.write ('
'); } document.write ('
' );