//
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([['Suffs','Procter & Gamble Hall at Aronoff Center','Cincinnati, OH','Tuesday','5/12/2026','7:30 PM','6963398','Suffs-5-12-2026'],['Sam Harris','Meridian Hall','Toronto, Canada','Tuesday','5/12/2026','7:30 PM','7505855','Sam-Harris-5-12-2026'],['Herbie Hancock','Peace Concert Hall At The Peace Center - SC','Greenville, SC','Tuesday','5/12/2026','7:30 PM','7623390','Herbie-Hancock-5-12-2026'],['Beauty and The Beast','Overture Hall At Overture Center for the Arts','Madison, WI','Tuesday','5/12/2026','7:30 PM','7183099','Beauty-and-The-Beast-5-12-2026'],['Water for Elephants - The Musical','Tennessee Performing Arts Center - Andrew Jackson Hall','Nashville, TN','Tuesday','5/12/2026','7:30 PM','6983829','Water-for-Elephants---The-Musical-5-12-2026'],['The Rock Orchestra By Candlelight','Juanita K. Hammons Hall','Springfield, MO','Tuesday','5/12/2026','8:00 PM','7503963','The-Rock-Orchestra-By-Candlelight-5-12-2026'],['Witness For The Prosecution','London County Hall','London, United Kingdom','Wednesday','5/13/2026','7:30 PM','7388457','Witness-For-The-Prosecution-5-13-2026'],['The Psychology of Serial Killers','Meymandi Concert Hall At Martin Marietta Center for the Performing Arts','Raleigh, NC','Wednesday','5/13/2026','7:30 PM','7733414','The-Psychology-of-Serial-Killers-5-13-2026'],['Suffs','Procter & Gamble Hall at Aronoff Center','Cincinnati, OH','Wednesday','5/13/2026','7:30 PM','6963399','Suffs-5-13-2026'],['SatchVai Band: Joe Satriani & Steve Vai & Animals As Leaders','Meridian Hall','Toronto, Canada','Wednesday','5/13/2026','7:30 PM','7689750','SatchVai-Band--Joe-Satriani---Steve-Vai---Animals-As-Leaders-5-13-2026']],'"All For The Hall"','https://www.ticketnetwork.com');