//
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([['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'],['Midland - Country Band','The Festival At Sandpoint','Sandpoint, ID','Thursday','8/6/2026','7:30 PM','7756812','Midland---Country-Band-8-6-2026'],['Trace Adkins','Sunset Station Hotel and Casino','Henderson, NV','Thursday','8/6/2026','8:00 PM','7981331','Trace-Adkins-8-6-2026'],['Charles Wesley Godwin','Channel 24','Sacramento, CA','Thursday','8/6/2026','8:00 PM','7980315','Charles-Wesley-Godwin-8-6-2026'],['Damn Tall Buildings','Alberta Rose Theatre','Portland, OR','Thursday','8/6/2026','8:00 PM','8088134','Damn-Tall-Buildings-8-6-2026'],['Briscoe','The Wayfarer','Costa Mesa, CA','Thursday','8/6/2026','8:00 PM','7903050','Briscoe-8-6-2026'],['Willow Avalon','The Crescent Ballroom - Phoenix','Phoenix, AZ','Thursday','8/6/2026','8:00 PM','7913449','Willow-Avalon-8-6-2026'],['X Country','Harrah's Cabaret At Harrah's Las Vegas','Las Vegas, NV','Thursday','8/6/2026','10:00 PM','7492599','X-Country-8-6-2026'],['Wyndham Championship','Sedgefield Country Club','Greensboro, NC','Friday','8/7/2026','8:00 AM','7309126','Wyndham-Championship-8-7-2026'],['Ronnie Mcdowell','Hernando's Hide-A-Way','Memphis, TN','Friday','8/7/2026','2:00 PM','8087058','Ronnie-Mcdowell-8-7-2026']],'Country','https://www.ticketnetwork.com');