//
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([['The Man In Black: Tribute To Johnny Cash','Hollywood Casino at Charles Town Races','Charles Town, WV','Friday','12/5/2025','8:00 PM','7262784','The-Man-In-Black--Tribute-To-Johnny-Cash-12-5-2025'],['James Garner - Tribute To Johnny Cash','Everett Theatre','Everett, WA','Saturday','12/6/2025','7:30 PM','6943986','James-Garner---Tribute-To-Johnny-Cash-12-6-2025'],['Cashback - A Salute To Johnny And June Carter Cash','Montgomery Performing Arts Centre','Montgomery, AL','Sunday','12/7/2025','8:00 PM','7548675','Cashback---A-Salute-To-Johnny-And-June-Carter-Cash-12-7-2025'],['The Man In Black: Tribute To Johnny Cash','Kravis Center - Dreyfoos Concert Hall','West Palm Beach, FL','Thursday','12/11/2025','11:00 AM','7149907','The-Man-In-Black--Tribute-To-Johnny-Cash-12-11-2025'],['The Man In Black: Tribute To Johnny Cash','Kravis Center - Dreyfoos Concert Hall','West Palm Beach, FL','Thursday','12/11/2025','2:00 PM','7149908','The-Man-In-Black--Tribute-To-Johnny-Cash-12-11-2025'],['The Johnny Folsom 4 - Tribute to Johnny Cash','Daryl's House','Pawling, NY','Saturday','12/13/2025','8:00 PM','7310607','The-Johnny-Folsom-4---Tribute-to-Johnny-Cash-12-13-2025'],['A Man Named Cash - Tribute to Johnny Cash','Michigan Theatre - Jackson','Jackson, MI','Saturday','12/20/2025','7:45 PM','7527398','A-Man-Named-Cash---Tribute-to-Johnny-Cash-12-20-2025'],['The Johnny Folsom 4 - Tribute to Johnny Cash','House Of Blues - Myrtle Beach','North Myrtle Beach, SC','Friday','1/9/2026','7:00 PM','7598989','The-Johnny-Folsom-4---Tribute-to-Johnny-Cash-1-9-2026'],['James Garner - Tribute To Johnny Cash','Historic Yuma Theatre','Yuma, AZ','Thursday','1/15/2026','7:00 PM','7467434','James-Garner---Tribute-To-Johnny-Cash-1-15-2026'],['Cash Unchained - Johnny Cash Tribute','Rams Head On Stage','Annapolis, MD','Thursday','1/22/2026','8:00 PM','7381901','Cash-Unchained---Johnny-Cash-Tribute-1-22-2026']],'Johnny Cash','https://www.ticketnetwork.com');