//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "Tickets",
tixUrl : "https://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
" +
row[3] +" "+"" +
row[4] + " "+"" +
row[5] + " | "+"" +
row[0] +" | " +
row[1] +" " +
row[2] +" | "+""+ this.linkText+ " |
";
},
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,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-01A
TN_Widget.CreateTable([['Cristoph','Concord Music Hall','Chicago, IL','Friday','5/9/2025','10:00 PM','6998752','Cristoph-5-9-2025'],['Avalon Emerson','Concord Music Hall','Chicago, IL','Friday','5/16/2025','10:00 PM','6870683','Avalon-Emerson-5-16-2025'],['horsegiirL','Concord Music Hall','Chicago, IL','Friday','5/23/2025','10:00 PM','7028620','horsegiirL-5-23-2025'],['Major League DJz','Concord Music Hall','Chicago, IL','Friday','5/30/2025','9:00 PM','7096062','Major-League-DJz-5-30-2025'],['Night of the SuperWrestlers','Concord Music Hall','Chicago, IL','Sunday','6/15/2025','6:00 PM','7038679','Night-of-the-SuperWrestlers-6-15-2025'],['Will Wood','Concord Music Hall','Chicago, IL','Tuesday','6/17/2025','7:00 PM','7071763','Will-Wood-6-17-2025'],['Reggaeton Rave','Concord Music Hall','Chicago, IL','Saturday','6/21/2025','9:00 PM','7038676','Reggaeton-Rave-6-21-2025'],['A Static Lullaby','Concord Music Hall','Chicago, IL','Saturday','6/28/2025','6:00 PM','7016677','A-Static-Lullaby-6-28-2025'],['Autoheart','Concord Music Hall','Chicago, IL','Friday','9/26/2025','6:00 PM','7104294','Autoheart-9-26-2025'],['sombr','Concord Music Hall','Chicago, IL','Thursday','10/2/2025','6:30 PM','7106706','sombr-10-2-2025'],['Yelle','Concord Music Hall','Chicago, IL','Wednesday','10/8/2025','6:30 PM','6995186','Yelle-10-8-2025'],['Autechre','Concord Music Hall','Chicago, IL','Monday','10/20/2025','7:00 PM','7011386','Autechre-10-20-2025'],['Quevedo','Concord Music Hall','Chicago, IL','Sunday','11/9/2025','7:30 PM','7092053','Quevedo-11-9-2025'],['Tyga','Concord Music Hall','Chicago, IL','Monday','4/8/2075','8:00 PM','6974323','Tyga-4-8-2075']],'Concord Music Hall','https://www.ticketnetwork.com/ticket/Concord-Music-Hall-events.aspx');