//
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-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Two Step Inn: Brooks and Dunn, Goo Goo Dolls, Chris Stapleton, & The Red Clay Strays - 2 Day Pass','San Gabriel Park','Georgetown, TX','Saturday','4/18/2026','TBD','7425512','Two-Step-Inn--Brooks-and-Dunn--Goo-Goo-Dolls--Chris-Stapleton----The-Red-Clay-Strays----2-Day-Pass-4-18-2026'],['Two Step Inn: Brooks and Dunn, Goo Goo Dolls, & BigXThaPlug - Saturday','San Gabriel Park','Georgetown, TX','Saturday','4/18/2026','12:00 PM','7425513','Two-Step-Inn--Brooks-and-Dunn--Goo-Goo-Dolls----BigXThaPlug---Saturday-4-18-2026'],['Stagecoach Festival: Cody Johnson, Lainey Wilson & Post Malone - 3 Day Pass','Empire Polo Field','Indio, CA','Friday','4/24/2026','TBD','7203845','Stagecoach-Festival--Cody-Johnson--Lainey-Wilson---Post-Malone---3-Day-Pass-4-24-2026'],['Brooks And Dunn','Nugget Event Center At Nugget Casino Resort','Sparks, NV','Saturday','4/25/2026','7:00 PM','7490624','Brooks-And-Dunn-4-25-2026'],['Stagecoach Festival: Post Malone, Brooks and Dunn & Hootie and The Blowfish - Sunday','Empire Polo Field','Indio, CA','Sunday','4/26/2026','12:00 PM','7203850','Stagecoach-Festival--Post-Malone--Brooks-and-Dunn---Hootie-and-The-Blowfish---Sunday-4-26-2026'],['Patriotic Festival: Zach Top, Brooks and Dunn & The Red Clay Strays - 3 Day Pass','Scope Arena','Norfolk, VA','Friday','5/22/2026','TBD','7473991','Patriotic-Festival--Zach-Top--Brooks-and-Dunn---The-Red-Clay-Strays---3-Day-Pass-5-22-2026'],['Patriotic Festival: Brooks and Dunn','Scope Arena','Norfolk, VA','Saturday','5/23/2026','7:00 PM','7493711','Patriotic-Festival--Brooks-and-Dunn-5-23-2026'],['WE Fest: Thomas Rhett, Lainey Wilson & Brooks and Dunn - 3 Day Pass','Soo Pass Ranch','Detroit Lakes, MN','Thursday','8/6/2026','TBD','7424953','WE-Fest--Thomas-Rhett--Lainey-Wilson---Brooks-and-Dunn---3-Day-Pass-8-6-2026']],'"Brooks Dunn"','https://www.ticketnetwork.com');