//
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([['The Man In Black: Tribute To Johnny Cash','Tarrytown Music Hall','Tarrytown, NY','Friday','6/5/2026','8:00 PM','7736408','The-Man-In-Black--Tribute-To-Johnny-Cash-6-5-2026'],['The Mighty Cash Cats - Johnny Cash Tribute','Mystic Theatre','Petaluma, CA','Saturday','6/6/2026','8:30 PM','7809572','The-Mighty-Cash-Cats---Johnny-Cash-Tribute-6-6-2026'],['The Man In Black: Tribute To Johnny Cash','Casino Rama Entertainment Centre','Rama, Canada','Sunday','6/7/2026','7:00 PM','7791719','The-Man-In-Black--Tribute-To-Johnny-Cash-6-7-2026'],['A Man Named Cash - Tribute to Johnny Cash','The Hall at Bourbon Brothers - GA','Gainesville, GA','Thursday','6/11/2026','7:30 PM','7832857','A-Man-Named-Cash---Tribute-to-Johnny-Cash-6-11-2026'],['Almost Folsom - Tribute to Johnny Cash','Arizona Broadway Theatre','Peoria, AZ','Monday','6/15/2026','7:30 PM','7739379','Almost-Folsom---Tribute-to-Johnny-Cash-6-15-2026'],['The Man In Black: Tribute To Johnny Cash','Blue Gate Performing Arts Center','Shipshewana, IN','Wednesday','6/24/2026','7:30 PM','7717488','The-Man-In-Black--Tribute-To-Johnny-Cash-6-24-2026'],['Johnny Cash & Friends - Tribute Show','Blue Gate Music Hall','Shipshewana, IN','Thursday','7/9/2026','4:00 PM','7670400','Johnny-Cash---Friends---Tribute-Show-7-9-2026'],['Walkin' The Line - Tribute to Johnny Cash','Palomar Starlight Theater at Pala Casino Spa and Resort','Pala, CA','Friday','7/10/2026','8:00 PM','7809858','Walkin--The-Line---Tribute-to-Johnny-Cash-7-10-2026'],['Johnny Cash & Friends - Tribute Show','Blue Gate Music Hall','Shipshewana, IN','Saturday','7/11/2026','7:00 PM','7670401','Johnny-Cash---Friends---Tribute-Show-7-11-2026'],['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','https://www.ticketnetwork.com');