//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Garth Brooks','Kia Center','Orlando, FL','Friday','9/25/2026','8:00 PM','8235490','Garth-Brooks-9-25-2026'],['Garth Brooks','Kia Center','Orlando, FL','Saturday','9/26/2026','8:00 PM','8235491','Garth-Brooks-9-26-2026'],['Garth Brooks','Kia Center','Orlando, FL','Sunday','9/27/2026','2:00 PM','8261316','Garth-Brooks-9-27-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'],['Garth Brooks','Delta Center','Salt Lake City, UT','Friday','10/9/2026','8:00 PM','8255625','Garth-Brooks-10-9-2026'],['Garth Brooks','Delta Center','Salt Lake City, UT','Saturday','10/10/2026','8:00 PM','8255626','Garth-Brooks-10-10-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'],['Garth Live - Tribute to Garth Brooks','Mansfield Center For The Performing Arts','Great Falls, MT','Thursday','10/15/2026','7:00 PM','8210234','Garth-Live---Tribute-to-Garth-Brooks-10-15-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'],['No Fences - Tribute to Garth Brooks','Wheeling Island Showroom','Wheeling, WV','Saturday','10/24/2026','8:00 PM','8249482','No-Fences---Tribute-to-Garth-Brooks-10-24-2026']],'"Garth Brooks"','https://www.ticketnetwork.com');