//
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([['Easton Corbin','Chenault Vineyards','Richmond, KY','Friday','7/18/2025','6:00 PM','7147616','Easton-Corbin-7-18-2025'],['Easton Corbin','The Coyote Store - Gail','Gail, TX','Saturday','7/26/2025','8:00 PM','6939496','Easton-Corbin-7-26-2025'],['Easton Corbin','The Dirty Bourbon Dance Hall & Saloon','Albuquerque, NM','Sunday','7/27/2025','7:00 PM','7102180','Easton-Corbin-7-27-2025'],['Easton Corbin','Phil Long Music Hall at Bourbon Brothers - CO','Colorado Springs, CO','Tuesday','7/29/2025','7:30 PM','7155166','Easton-Corbin-7-29-2025'],['Easton Corbin','Yamhill County Fairgrounds','Portland, OR','Thursday','7/31/2025','9:00 PM','7074335','Easton-Corbin-7-31-2025'],['Easton Corbin','Rogue Theatre - OR','Grants Pass, OR','Friday','8/1/2025','8:00 PM','7056538','Easton-Corbin-8-1-2025'],['Easton Corbin','Pine Creek Lodge','Livingston, MT','Sunday','8/3/2025','7:00 PM','7102163','Easton-Corbin-8-3-2025'],['Easton Corbin','Lincoln County Fairgrounds - WY','Afton, WY','Monday','8/4/2025','7:00 PM','7147603','Easton-Corbin-8-4-2025'],['Jon Pardi & Easton Corbin','Main Stage At Wisconsin State Fair Park','Milwaukee, WI','Wednesday','8/6/2025','7:30 PM','7170572','Jon-Pardi---Easton-Corbin-8-6-2025'],['Easton Corbin','Stevens County Fairgrounds','Morris, MN','Friday','8/8/2025','7:30 PM','6939504','Easton-Corbin-8-8-2025']],'Easton Corbin','https://www.ticketnetwork.com');