//
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-02A
TN_Widget.CreateTable([['Natalie Nunn','The Deluxe at Old National Centre','Indianapolis, IN','Friday','5/15/2026','10:00 PM','7848150','Natalie-Nunn-5-15-2026'],['Cattle Decapitation','The Deluxe at Old National Centre','Indianapolis, IN','Saturday','5/16/2026','7:00 PM','7732488','Cattle-Decapitation-5-16-2026'],['Autumn!','The Deluxe at Old National Centre','Indianapolis, IN','Wednesday','5/20/2026','8:00 PM','7751710','Autumn--5-20-2026'],['Mike Sherm','The Deluxe at Old National Centre','Indianapolis, IN','Saturday','6/6/2026','8:00 PM','7897850','Mike-Sherm-6-6-2026'],['Spacey Jane','The Deluxe at Old National Centre','Indianapolis, IN','Wednesday','6/10/2026','8:00 PM','7803420','Spacey-Jane-6-10-2026'],['Pradabagshawty','The Deluxe at Old National Centre','Indianapolis, IN','Friday','6/12/2026','8:00 PM','7832253','Pradabagshawty-6-12-2026'],['Five Iron Frenzy, The Suicide Machines & Mustard Plug','The Deluxe at Old National Centre','Indianapolis, IN','Friday','6/26/2026','7:00 PM','7810948','Five-Iron-Frenzy--The-Suicide-Machines---Mustard-Plug-6-26-2026'],['Beach Bunny','The Deluxe at Old National Centre','Indianapolis, IN','Sunday','7/26/2026','8:00 PM','7794198','Beach-Bunny-7-26-2026'],['Cat Power','The Deluxe at Old National Centre','Indianapolis, IN','Saturday','8/1/2026','8:00 PM','7757194','Cat-Power-8-1-2026'],['Driveways','The Deluxe at Old National Centre','Indianapolis, IN','Sunday','8/2/2026','7:00 PM','7828542','Driveways-8-2-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'],['RAC & Hotel Garuda','The Deluxe at Old National Centre','Indianapolis, IN','Tuesday','6/17/2070','TBD','4433315','RAC---Hotel-Garuda-6-17-2070']],'Deluxe at Old National Centre','http://www.ticketnetwork.com/ticket/Deluxe-at-Old-National-Centre-events.aspx');