function DrawConcert( dateTime, concertInfo, venue, location, contact ) {
  document.writeln( '  <SPAN class="schedText"><SPAN class="dateBold">' + dateTime + '<BR></SPAN>' )

  if ( concertInfo != "" ) {
    document.writeln( '  ' + concertInfo + '<BR>' )
  }

  if ( venue != "" ) {
    document.writeln( '  ' + venue + '<BR>' )
  }

  if ( location != "" ) {
    document.writeln( '  ' + location + '<BR>' )
  }

  if ( contact != "" ) {
    document.writeln( '  Contact: ' + contact + '<P>' )
  } else {
    document.writeln( '  <P>' )
  }
  
  document.writeln( '  </SPAN>' ) 
}

