//
var TN_Widget = function() {
var months = ["", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
return {
newWindow : true,
CreateEventRow : function(row, isAlt) {
var dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kwds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
var newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-02A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['Black Jacket Symphony: The Era of Yacht Rock','Concert Hall at the BJCC','Birmingham, AL','Friday','10/3/2025','8:00 PM','7096125','Black-Jacket-Symphony--The-Era-of-Yacht-Rock-10-3-2025'],['Rick Springfield & Richard Marx','Concert Hall at the BJCC','Birmingham, AL','Tuesday','10/7/2025','7:30 PM','6739518','Rick-Springfield---Richard-Marx-10-7-2025'],['Harry Potter and the Order of the Phoenix In Concert','Concert Hall at the BJCC','Birmingham, AL','Friday','10/10/2025','7:00 PM','7153872','Harry-Potter-and-the-Order-of-the-Phoenix-In-Concert-10-10-2025'],['Harry Potter and the Order of the Phoenix In Concert','Concert Hall at the BJCC','Birmingham, AL','Sunday','10/12/2025','2:30 PM','7153873','Harry-Potter-and-the-Order-of-the-Phoenix-In-Concert-10-12-2025'],['The Rock Orchestra By Candlelight','Concert Hall at the BJCC','Birmingham, AL','Monday','10/13/2025','8:00 PM','6991627','The-Rock-Orchestra-By-Candlelight-10-13-2025'],['Tasha Cobbs Leonard','Concert Hall at the BJCC','Birmingham, AL','Tuesday','11/4/2025','7:00 PM','7214790','Tasha-Cobbs-Leonard-11-4-2025'],['Clue - The Musical','Concert Hall at the BJCC','Birmingham, AL','Tuesday','11/11/2025','7:30 PM','6935463','Clue---The-Musical-11-11-2025'],['Clue - The Musical','Concert Hall at the BJCC','Birmingham, AL','Wednesday','11/12/2025','7:30 PM','6935464','Clue---The-Musical-11-12-2025'],['Clue - The Musical','Concert Hall at the BJCC','Birmingham, AL','Thursday','11/13/2025','7:30 PM','6935465','Clue---The-Musical-11-13-2025'],['Clue - The Musical','Concert Hall at the BJCC','Birmingham, AL','Friday','11/14/2025','7:30 PM','6935466','Clue---The-Musical-11-14-2025']],'BJCC Concert Hall Birmingham','http://www.ticketnetwork.com/en/search/?text=BJCC%20Concert%20Hall%20Birmingham');