//
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: The Legacy Continues - Tribute','Concert Hall At Tilles Center for the Performing Arts','Brookville, NY','Saturday','8/2/2025','6:00 PM','7267984','Johnny-Cash--The-Legacy-Continues---Tribute-8-2-2025'],['The Man In Black: Tribute To Johnny Cash','Longhorn Ballroom','Dallas, TX','Friday','8/8/2025','8:00 PM','7090272','The-Man-In-Black--Tribute-To-Johnny-Cash-8-8-2025'],['The Man In Black: Tribute To Johnny Cash','The Heights','Houston, TX','Saturday','8/9/2025','8:00 PM','7146919','The-Man-In-Black--Tribute-To-Johnny-Cash-8-9-2025'],['The Man In Black: Tribute To Johnny Cash','Midway - Edmonton','Edmonton, Canada','Thursday','8/14/2025','7:00 PM','7071984','The-Man-In-Black--Tribute-To-Johnny-Cash-8-14-2025'],['The Man In Black: Tribute To Johnny Cash','Bella Concert Hall - Mount Royal University','Calgary, Canada','Friday','8/15/2025','8:00 PM','7078203','The-Man-In-Black--Tribute-To-Johnny-Cash-8-15-2025'],['The Man In Black: Tribute To Johnny Cash','Revelry Food and Music Hub','Kelowna, Canada','Saturday','8/16/2025','7:00 PM','7165940','The-Man-In-Black--Tribute-To-Johnny-Cash-8-16-2025'],['The Man In Black: Tribute To Johnny Cash','Commodore Ballroom','Vancouver, Canada','Sunday','8/17/2025','7:00 PM','7074716','The-Man-In-Black--Tribute-To-Johnny-Cash-8-17-2025'],['The Man In Black: Tribute To Johnny Cash','Boulder Theater','Boulder, CO','Wednesday','8/20/2025','7:30 PM','7101616','The-Man-In-Black--Tribute-To-Johnny-Cash-8-20-2025'],['The Man In Black: Tribute To Johnny Cash','Smoky Mountain Center for the Performing Arts','Franklin, NC','Friday','8/22/2025','7:30 PM','7052596','The-Man-In-Black--Tribute-To-Johnny-Cash-8-22-2025'],['Cash and Orbison - A Tribute to Johnny Cash and Roy Orbison','Old Town Theatre','Huntsville, TX','Saturday','8/30/2025','7:30 PM','7021753','Cash-and-Orbison---A-Tribute-to-Johnny-Cash-and-Roy-Orbison-8-30-2025']],'Johnny Cash','https://www.ticketnetwork.com');