//
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-03A
TN_Widget.CreateTable([['Billy Idol & Joan Jett and The Blackhearts','Credit Union 1 Amphitheatre','Tinley Park, IL','Tuesday','5/20/2025','7:30 PM','6944281','Billy-Idol---Joan-Jett-and-The-Blackhearts-5-20-2025'],['Pierce The Veil, Sleeping with Sirens & Beach Weather','Credit Union 1 Amphitheatre','Tinley Park, IL','Saturday','6/7/2025','7:00 PM','6861098','Pierce-The-Veil--Sleeping-with-Sirens---Beach-Weather-6-7-2025'],['Chris Stapleton','Credit Union 1 Amphitheatre','Tinley Park, IL','Friday','6/27/2025','7:00 PM','6919624','Chris-Stapleton-6-27-2025'],['Chris Stapleton','Credit Union 1 Amphitheatre','Tinley Park, IL','Saturday','6/28/2025','7:30 PM','6938578','Chris-Stapleton-6-28-2025'],['Rod Stewart','Credit Union 1 Amphitheatre','Tinley Park, IL','Friday','8/8/2025','7:30 PM','6834038','Rod-Stewart-8-8-2025'],['Toto, Christopher Cross, & Men at Work','Credit Union 1 Amphitheatre','Tinley Park, IL','Saturday','8/9/2025','6:45 PM','6874423','Toto--Christopher-Cross----Men-at-Work-8-9-2025'],['Nelly, Ja Rule & Eve','Credit Union 1 Amphitheatre','Tinley Park, IL','Wednesday','8/13/2025','8:00 PM','6872267','Nelly--Ja-Rule---Eve-8-13-2025'],['Styx, Kevin Cronin & Don Felder','Credit Union 1 Amphitheatre','Tinley Park, IL','Saturday','8/23/2025','6:45 PM','6868964','Styx--Kevin-Cronin---Don-Felder-8-23-2025'],['Jason Aldean, Nate Smith & RaeLynn','Credit Union 1 Amphitheatre','Tinley Park, IL','Saturday','9/13/2025','7:30 PM','6944235','Jason-Aldean--Nate-Smith---RaeLynn-9-13-2025'],['Papa Roach & Rise Against','Credit Union 1 Amphitheatre','Tinley Park, IL','Saturday','9/27/2025','7:00 PM','6814088','Papa-Roach---Rise-Against-9-27-2025']],'First Midwest Bank Amphitheatre','https://www.ticketnetwork.com/ticket/First-Midwest-Bank-Amphitheatre-events.aspx');