// ecm.txt
// DARC EC Meetings: ["DATE", "TIME", "Location", "A=AGM the AGM, n=normal", "Link or .", "Address"]
var darc_ecm = new Array(
[" 9 Jan '10", "12:00p", "McGinness Center", "A", "http://maps.google.com/maps?q=1700+Frericks+Way,+Dayton,+OH+45409,+USA&sa=X&oi=map&ct=title", "'1700 Frericks Way'"],
["17 FEB", "7:30p", ".", ".", "", ""],
["17 MAR", "7:30p", ".", ".", "", ""],
["14 APR", "7:30p", ".", ".", "", ""],
["19 MAY", "7:30p", ".", ".", "", ""],
["16 JUN", "7:30p", ".", ".", "", ""],
["14 JUL", "7:30p", ".", ".", "", ""],
["16 AUG", "7:30p", ".", ".", "", ""],
["15 SEP", "7:30p", ".", ".", "", ""],
["20 OCT", "7:30p", ".", ".", "", ""],
["17 NOV", "7:30p", ".", ".", "", ""],
["15 DEC", "7:30p", ".", "", "", ""]
);
// Build table for "Our Executive Committee"
document.write ('
| ');
document.write (' ');
document.write ('Our Executive Committee - ');
document.write ( tyear );
document.write (' ');
document.write (' ');
for ( i = 0; i < darc_ec.length ; i++ )
{
document.write ( '| ' );
document.write ( darc_ec[i][0] );
document.write ( ' | ' );
document.write ( darc_ec[i][1] );
document.write ( ' | ' );
document.write ( darc_ec[i][2] );
document.write ( ' | ' );
} // Close EC
document.write (' ');
// Spacer cell and ECM cell
document.write (' | | ');
// Build ECM table
document.write (' EC Meeting Dates - ');
document.write ( tyear );
document.write (' ');
document.write ('');
for ( i = 0; i < darc_ecm.length ; i++ )
{
document.write ( '| ' );
document.write ( darc_ecm[i][0] );
document.write ( ' | ' );
document.write ( darc_ecm[i][1] );
// Leave cell open for highlight
document.write ( ' | AGM @ ' );
// No highlight
else
document.write ( '> ' );
// Do we have a location link?
if ( darc_ecm[i][4] )
{
document.write ( '' );
// Meeting place
document.write ( darc_ecm[i][2] );
document.write ( '' );
}
else if ( darc_ecm[i][2] == "." )
{
// Location - no link.
document.write ('Location TBD');
}
else
// Location - no link.
document.write ( darc_ecm[i][2] );
// Turn off AGM highlight
if ( darc_ecm[i][3] == "A" )
document.write ( '' );
document.write ( ' | ' );
}
document.write (' ');
document.write (' for directions send e-mail to secretary@daytonrugby.com ');
// Close ECM
document.write (' | ');
// Close "Our Executive Committee"
document.write (' |
');