
function DrawStageTableTop( baseDirectory, tableHeaderText ) {
  document.writeln( '<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0 WIDTH=295>' )

  document.writeln( '<TR ALIGN="CENTER">' )
  document.writeln( '  <TD COLSPAN=3><SPAN class="mainSubHeader">' + tableHeaderText + '</SPAN></TD></TR>' )
}

function DrawStageTableBottom() {
  document.writeln( '</TABLE>' )
}

function DrawStageTableElement( bandTime, bandName, bandDesc ) {
  document.writeln( '<TR><TD COLSPAN=3><IMG SRC="../images/spacer.gif" HEIGHT=7></TD></TR>' ) 
  document.writeln( '<TR VALIGN="TOP">' )
  document.writeln( '  <TD WIDTH=70><SPAN class="bandTime">' + bandTime + '</SPAN></TD>' )
  document.writeln( '  <TD WIDTH=5><IMG SRC="../images/spacer.gif" WIDTH=5></TD>' )
  document.writeln( '  <TD WIDTH=220>' )
  document.writeln( '    <SPAN class="bandName">' + bandName + '</SPAN><BR>' )
  document.writeln( '    <SPAN class="bandDesc">' + bandDesc + '</SPAN></TD>' )
  document.writeln( '</TR>' )
}




