//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "view
tickets",
tixUrl : "http://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[0] +" | " +
row[1] +" " +
row[2] +" | " +
row[3] +" " +
row[4] + " " +
row[5] + " | "+ 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-04A
TN_Widget.CreateTable([['Emo Nite','The Deluxe at Old National Centre','Indianapolis, IN','Saturday','8/8/2026','9:00 PM','8056731','Emo-Nite-8-8-2026'],['American Football - Band','The Deluxe at Old National Centre','Indianapolis, IN','Thursday','8/13/2026','8:00 PM','7718048','American-Football---Band-8-13-2026'],['FattMack','The Deluxe at Old National Centre','Indianapolis, IN','Sunday','8/30/2026','8:00 PM','8027029','FattMack-8-30-2026'],['Club 90s: MJ Night','The Deluxe at Old National Centre','Indianapolis, IN','Saturday','9/5/2026','9:00 PM','8174043','Club-90s--MJ-Night-9-5-2026'],['Honestav','The Deluxe at Old National Centre','Indianapolis, IN','Friday','9/18/2026','8:30 PM','8054227','Honestav-9-18-2026'],['Nekrogoblikon','The Deluxe at Old National Centre','Indianapolis, IN','Thursday','11/5/2026','7:00 PM','8038316','Nekrogoblikon-11-5-2026'],['State Champs','The Deluxe at Old National Centre','Indianapolis, IN','Saturday','11/7/2026','7:00 PM','8055278','State-Champs-11-7-2026'],['Dead Poet Society & Honey Revenge','The Deluxe at Old National Centre','Indianapolis, IN','Thursday','11/12/2026','7:00 PM','8165141','Dead-Poet-Society---Honey-Revenge-11-12-2026'],['Medium Build','The Deluxe at Old National Centre','Indianapolis, IN','Tuesday','11/17/2026','8:00 PM','8086630','Medium-Build-11-17-2026'],['STS9 - Sound Tribe Sector 9','The Deluxe at Old National Centre','Indianapolis, IN','Wednesday','11/18/2026','8:00 PM','8060847','STS9---Sound-Tribe-Sector-9-11-18-2026'],['Chat Pile','The Deluxe at Old National Centre','Indianapolis, IN','Friday','11/20/2026','7:30 PM','8038474','Chat-Pile-11-20-2026'],['Pouya','The Deluxe at Old National Centre','Indianapolis, IN','Sunday','12/6/2026','8:00 PM','8062215','Pouya-12-6-2026']],'Deluxe at Old National Centre','http://www.ticketnetwork.com/ticket/Deluxe-at-Old-National-Centre-events.aspx');