//
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([['Wild Kratts - Live','Cofrin Family Hall At Weidner Center For The Performing Arts','Green Bay, WI','Sunday','5/31/2026','1:00 PM','7421313','Wild-Kratts---Live-5-31-2026'],['Houston Symphony: Lights! Camera! Action! - 100 Years of Epic Film Scores','Jones Hall for the Performing Arts','Houston, TX','Sunday','5/31/2026','2:00 PM','7277791','Houston-Symphony--Lights--Camera--Action----100-Years-of-Epic-Film-Scores-5-31-2026'],['Kansas City Symphony: Matthias Pintscher - Gil Shaham Plays Brahms','Helzberg Hall - Kauffman Center for the Performing Arts','Kansas City, MO','Sunday','5/31/2026','2:00 PM','7456201','Kansas-City-Symphony--Matthias-Pintscher---Gil-Shaham-Plays-Brahms-5-31-2026'],['Eugene Ballet: Alice in Wonderland','Silva Concert Hall at Hult Center For The Performing Arts','Eugene, OR','Sunday','5/31/2026','2:00 PM','7210858','Eugene-Ballet--Alice-in-Wonderland-5-31-2026'],['Pittsburgh Symphony Orchestra: Gemma New - Scheherazade','Heinz Hall','Pittsburgh, PA','Sunday','5/31/2026','2:30 PM','7627142','Pittsburgh-Symphony-Orchestra--Gemma-New---Scheherazade-5-31-2026'],['Witness For The Prosecution','London County Hall','London, United Kingdom','Sunday','5/31/2026','3:00 PM','7388478','Witness-For-The-Prosecution-5-31-2026'],['Cal Poly Wind Bands Spring Concert: Journey Home','Harold Miossi Hall at Christopher Cohan Performing Arts Center','San Luis Obispo, CA','Sunday','5/31/2026','3:00 PM','7546839','Cal-Poly-Wind-Bands-Spring-Concert--Journey-Home-5-31-2026'],['Fairfax Symphony Orchestra: Christopher Zimmerman - Prokofiev: Sounds of Genius','George Mason Center For The Arts - Concert Hall','Fairfax, VA','Sunday','5/31/2026','4:00 PM','7307294','Fairfax-Symphony-Orchestra--Christopher-Zimmerman---Prokofiev--Sounds-of-Genius-5-31-2026'],['Wild Kratts - Live','Cofrin Family Hall At Weidner Center For The Performing Arts','Green Bay, WI','Sunday','5/31/2026','5:00 PM','7526322','Wild-Kratts---Live-5-31-2026'],['Colorblind, Windwaker & If Not For Me','White Oak Music Hall - Upstairs','Houston, TX','Sunday','5/31/2026','6:00 PM','7785517','Colorblind--Windwaker---If-Not-For-Me-5-31-2026']],'"All For The Hall"','https://www.ticketnetwork.com');