//
var TN_Widget = function() {
return {
CreateEventRow : function(row, isAlt) {
return "
" +
row[3] + " " +
row[4] + " " +
row[5] + " | " +
row[0] + " | " +
row[1] + " " +
row[2] + " | Tickets |
";
},
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;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-02A
TN_Widget.CreateTable([['Future of Jazz Orchestra','Dizzys Club Coca-Cola','New York, NY','Monday','5/18/2026','9:00 PM','7829435','Future-of-Jazz-Orchestra-5-18-2026'],['Metropolitan Opera: Turandot','Metropolitan Opera at Lincoln Center','New York, NY','Tuesday','5/19/2026','7:00 PM','7001281','Metropolitan-Opera--Turandot-5-19-2026'],['Ragtime','Vivian Beaumont Theatre at Lincoln Center','New York, NY','Tuesday','5/19/2026','7:00 PM','7545861','Ragtime-5-19-2026'],['New York City Ballet: Contemporary Choreography III','David H. Koch Theater','New York, NY','Tuesday','5/19/2026','7:30 PM','7079660','New-York-City-Ballet--Contemporary-Choreography-III-5-19-2026'],['A Woman Among Women','Lincoln Center Theater - Claire Tow Theater','New York, NY','Tuesday','5/19/2026','8:00 PM','7395073','A-Woman-Among-Women-5-19-2026'],['Helen Sung Big Band','Dizzys Club Coca-Cola','New York, NY','Tuesday','5/19/2026','9:00 PM','7829431','Helen-Sung-Big-Band-5-19-2026'],['Ragtime','Vivian Beaumont Theatre at Lincoln Center','New York, NY','Wednesday','5/20/2026','2:00 PM','7546048','Ragtime-5-20-2026'],['Metropolitan Opera: La Traviata','Metropolitan Opera at Lincoln Center','New York, NY','Wednesday','5/20/2026','7:00 PM','7001255','Metropolitan-Opera--La-Traviata-5-20-2026'],['Sounds of April and Randall: April May Webb & Randall Haywood','Dizzys Club Coca-Cola','New York, NY','Wednesday','5/20/2026','7:00 PM','7829429','Sounds-of-April-and-Randall--April-May-Webb---Randall-Haywood-5-20-2026'],['New York City Ballet: Contemporary Choreography III','David H. Koch Theater','New York, NY','Wednesday','5/20/2026','7:30 PM','7079661','New-York-City-Ballet--Contemporary-Choreography-III-5-20-2026']],'Lincoln Center','http://www.ticketnetwork.com/ticket/Lincoln-Center-events.aspx');