//
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 Pettybreakers - Tribute To Tom Petty And The Heartbreakers','Concert Hall at California Center For The Arts Escondido','Escondido, CA','Saturday','9/26/2026','8:00 PM','8112934','The-Pettybreakers---Tribute-To-Tom-Petty-And-The-Heartbreakers-9-26-2026'],['The Great Gatsby - Theatrical Production','Procter & Gamble Hall at Aronoff Center','Cincinnati, OH','Sunday','9/27/2026','1:00 PM','7706236','The-Great-Gatsby---Theatrical-Production-9-27-2026'],['Mamma Mia!','Uihlein Hall At Marcus Center','Milwaukee, WI','Sunday','9/27/2026','1:00 PM','7783449','Mamma-Mia--9-27-2026'],['Beauty and The Beast','Segerstrom Center For The Arts - Segerstrom Hall','Costa Mesa, CA','Sunday','9/27/2026','1:00 PM','7753593','Beauty-and-The-Beast-9-27-2026'],['Finding Nemo Jr.','Clay Center','Charleston, WV','Sunday','9/27/2026','2:00 PM','8245408','Finding-Nemo-Jr--9-27-2026'],['Eugene Opera: Macbeth','Silva Concert Hall at Hult Center For The Performing Arts','Eugene, OR','Sunday','9/27/2026','2:30 PM','8022627','Eugene-Opera--Macbeth-9-27-2026'],['Witness For The Prosecution','London County Hall','London, United Kingdom','Sunday','9/27/2026','3:00 PM','7388608','Witness-For-The-Prosecution-9-27-2026'],['Greenville Symphony Orchestra: Opening Night - Mozart Requiem','Peace Concert Hall At The Peace Center - SC','Greenville, SC','Sunday','9/27/2026','3:00 PM','7810071','Greenville-Symphony-Orchestra--Opening-Night---Mozart-Requiem-9-27-2026'],['Gaurav Kapoor','Hill Performance Hall at Eisemann Center','Richardson, TX','Sunday','9/27/2026','5:00 PM','7788567','Gaurav-Kapoor-9-27-2026'],['Illinois Rock & Roll Museum Hall Of Fame Induction Ceremony','Harris Theater','Chicago, IL','Sunday','9/27/2026','6:00 PM','8188150','Illinois-Rock---Roll-Museum-Hall-Of-Fame-Induction-Ceremony-9-27-2026']],'"All For The Hall"','https://www.ticketnetwork.com');