//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Witness For The Prosecution','London County Hall','London, United Kingdom','Friday','6/12/2026','7:30 PM','7388491','Witness-For-The-Prosecution-6-12-2026'],['The Lion King','Procter & Gamble Hall at Aronoff Center','Cincinnati, OH','Friday','6/12/2026','7:30 PM','6963408','The-Lion-King-6-12-2026'],['Pittsburgh Symphony Orchestra','Heinz Hall','Pittsburgh, PA','Friday','6/12/2026','7:30 PM','7627143','Pittsburgh-Symphony-Orchestra-6-12-2026'],['& Juliet','Uihlein Hall At Marcus Center','Milwaukee, WI','Friday','6/12/2026','7:30 PM','7047011','--Juliet-6-12-2026'],['Ballets Jazz Montreal: Dance Me - The Music of Leonard Cohen','Jones Hall for the Performing Arts','Houston, TX','Friday','6/12/2026','7:30 PM','7559293','Ballets-Jazz-Montreal--Dance-Me---The-Music-of-Leonard-Cohen-6-12-2026'],['The Sound Of Music','Segerstrom Center For The Arts - Segerstrom Hall','Costa Mesa, CA','Friday','6/12/2026','7:30 PM','7047344','The-Sound-Of-Music-6-12-2026'],['The Notebook - The Musical','Peace Concert Hall At The Peace Center - SC','Greenville, SC','Friday','6/12/2026','8:00 PM','7116580','The-Notebook---The-Musical-6-12-2026'],['Spacey Jane','Charleston Music Hall','Charleston, SC','Friday','6/12/2026','8:00 PM','7803424','Spacey-Jane-6-12-2026'],['Pacific Symphony: Rossini, Bocherini, Mascagni & Rachmaninoff','Segerstrom Center For The Arts - Renee and Henry Segerstrom Concert Hall','Costa Mesa, CA','Friday','6/12/2026','8:00 PM','7114296','Pacific-Symphony--Rossini--Bocherini--Mascagni---Rachmaninoff-6-12-2026'],['The Music of Taylor Swift For Kids','The Ardmore Music Hall','Ardmore, PA','Saturday','6/13/2026','11:45 AM','7835233','The-Music-of-Taylor-Swift-For-Kids-6-13-2026']],'"All For The Hall"','https://www.ticketnetwork.com');