//
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 t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
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 newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Ultimate Garth Brooks Tribute','The Forge Adventure Park','Lemont, IL','Saturday','8/8/2026','6:30 PM','8122112','Ultimate-Garth-Brooks-Tribute-8-8-2026'],['Garth Brooks','Gainbridge Fieldhouse','Indianapolis, IN','Thursday','8/20/2026','7:30 PM','8144124','Garth-Brooks-8-20-2026'],['Garth Brooks','Gainbridge Fieldhouse','Indianapolis, IN','Friday','8/21/2026','8:00 PM','8113482','Garth-Brooks-8-21-2026'],['Garth Brooks','Gainbridge Fieldhouse','Indianapolis, IN','Saturday','8/22/2026','8:00 PM','8113483','Garth-Brooks-8-22-2026'],['Garth Brooks','Gainbridge Fieldhouse','Indianapolis, IN','Sunday','8/23/2026','2:00 PM','8143711','Garth-Brooks-8-23-2026'],['Garth Brooks','Ball Arena','Denver, CO','Friday','9/4/2026','8:00 PM','8159279','Garth-Brooks-9-4-2026'],['Garth Brooks','Ball Arena','Denver, CO','Saturday','9/5/2026','8:00 PM','8159280','Garth-Brooks-9-5-2026'],['The World According to Garth - Garth Brooks Tribute','Medina Entertainment Center','Hamel, MN','Saturday','10/3/2026','8:00 PM','7963314','The-World-According-to-Garth---Garth-Brooks-Tribute-10-3-2026'],['No Fences - Tribute to Garth Brooks','Madlife Stage & Studios','Woodstock, GA','Saturday','10/10/2026','9:30 PM','8037105','No-Fences---Tribute-to-Garth-Brooks-10-10-2026'],['Shawn Gerhard - Tribute To Garth Brooks','Athens Theatre - FL','Deland, FL','Saturday','10/17/2026','7:30 PM','7937904','Shawn-Gerhard---Tribute-To-Garth-Brooks-10-17-2026']],'"Garth Brooks"','https://www.ticketnetwork.com');