//
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([['Johnny Cash & Friends - Tribute Show','Blue Gate Music Hall','Shipshewana, IN','Tuesday','7/14/2026','1:00 PM','7670402','Johnny-Cash---Friends---Tribute-Show-7-14-2026'],['Johnny Cash & Friends - Tribute Show','Blue Gate Music Hall','Shipshewana, IN','Friday','7/17/2026','4:00 PM','7739837','Johnny-Cash---Friends---Tribute-Show-7-17-2026'],['Darlin' Companion - A Tribute to Johnny Cash and June Carter Cash','The Strings Pavilion','Steamboat Springs, CO','Saturday','7/18/2026','7:00 PM','8015532','Darlin--Companion---A-Tribute-to-Johnny-Cash-and-June-Carter-Cash-7-18-2026'],['A Man Named Cash - Tribute to Johnny Cash','The Theater at North ','Scranton, PA','Friday','7/24/2026','7:00 PM','7937936','A-Man-Named-Cash---Tribute-to-Johnny-Cash-7-24-2026'],['Terry Lee Goffee - Johnny Cash Tribute','Hartville Kitchen','Hartville, OH','Thursday','7/30/2026','1:00 PM','7664816','Terry-Lee-Goffee---Johnny-Cash-Tribute-7-30-2026'],['The Man In Black: Tribute To Johnny Cash','The Event Center At Hollywood Casino - Columbus','Columbus, OH','Friday','7/31/2026','8:00 PM','7840281','The-Man-In-Black--Tribute-To-Johnny-Cash-7-31-2026'],['Johnny Cash Tribute','Rogue Theatre - OR','Grants Pass, OR','Friday','8/7/2026','8:00 PM','7833567','Johnny-Cash-Tribute-8-7-2026'],['Walkin' The Line - Tribute to Johnny Cash','Rockbox Theater','Fredericksburg, TX','Saturday','8/8/2026','4:00 PM','8102037','Walkin--The-Line---Tribute-to-Johnny-Cash-8-8-2026'],['Walkin' The Line - Tribute to Johnny Cash','Rockbox Theater','Fredericksburg, TX','Saturday','8/8/2026','8:00 PM','8102026','Walkin--The-Line---Tribute-to-Johnny-Cash-8-8-2026'],['A Man Named Cash - Tribute to Johnny Cash','The Celestia Theater At Wadsworth Square','Wadsworth, OH','Saturday','8/22/2026','7:00 PM','7933649','A-Man-Named-Cash---Tribute-to-Johnny-Cash-8-22-2026']],'Johnny Cash','https://www.ticketnetwork.com');