//
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-04A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Hank Williams Festival: Easton Corbin - Friday','Hank Williams Festival','Georgiana, AL','Friday','6/5/2026','9:00 PM','7679762','Hank-Williams-Festival--Easton-Corbin---Friday-6-5-2026'],['Riverfest: Sara Evans, Easton Corbin & Greylan James','Downtown Savannah - TN','Savannah, TN','Saturday','6/27/2026','4:00 PM','7878427','Riverfest--Sara-Evans--Easton-Corbin---Greylan-James-6-27-2026'],['Bulls, Boots, and Bright Lights: Easton Corbin','Marion Stadium','Marion, IL','Thursday','7/2/2026','6:00 PM','7946107','Bulls--Boots--and-Bright-Lights--Easton-Corbin-7-2-2026'],['Justin Moore & Easton Corbin','Pepsi Bayside Music Stage At National Cherry Festival','Traverse City, MI','Friday','7/10/2026','6:00 PM','7687371','Justin-Moore---Easton-Corbin-7-10-2026'],['Easton Corbin','Haute Spot','Cedar Park, TX','Friday','7/17/2026','6:00 PM','7919851','Easton-Corbin-7-17-2026'],['Easton Corbin & Rusty Rierson','Cowley County Fair At Winfield Fairgrounds','Winfield, KS','Saturday','8/1/2026','7:30 PM','7878424','Easton-Corbin---Rusty-Rierson-8-1-2026'],['Easton Corbin','Desert Diamond Casino - Sahuarita','Sahuarita, AZ','Sunday','8/2/2026','8:00 PM','7624704','Easton-Corbin-8-2-2026'],['Easton Corbin','Warner Vineyards','Paw Paw, MI','Sunday','8/9/2026','7:00 PM','7896361','Easton-Corbin-8-9-2026'],['Easton Corbin','Steel Creek American Whiskey Co.','Tacoma, WA','Thursday','8/20/2026','7:00 PM','7878506','Easton-Corbin-8-20-2026'],['Easton Corbin','Roadhouse at The Mill','Emmett, ID','Saturday','8/22/2026','5:30 PM','7808305','Easton-Corbin-8-22-2026']],'Easton Corbin','https://www.ticketnetwork.com');