//
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([['Canyon Concert Ballet: The Nutcracker','Lincoln Center Performance Hall','Fort Collins, CO','Sunday','12/7/2025','11:00 AM','7319351','Canyon-Concert-Ballet--The-Nutcracker-12-7-2025'],['New York City Ballet: The Nutcracker','David H. Koch Theater','New York, NY','Sunday','12/7/2025','1:00 PM','7282017','New-York-City-Ballet--The-Nutcracker-12-7-2025'],['Metropolitan Opera: Porgy and Bess','Metropolitan Opera at Lincoln Center','New York, NY','Sunday','12/7/2025','3:00 PM','7001398','Metropolitan-Opera--Porgy-and-Bess-12-7-2025'],['Ragtime','Vivian Beaumont Theatre at Lincoln Center','New York, NY','Sunday','12/7/2025','3:00 PM','7146419','Ragtime-12-7-2025'],['Canyon Concert Ballet: The Nutcracker','Lincoln Center Performance Hall','Fort Collins, CO','Sunday','12/7/2025','4:00 PM','7319352','Canyon-Concert-Ballet--The-Nutcracker-12-7-2025'],['New York City Ballet: The Nutcracker','David H. Koch Theater','New York, NY','Sunday','12/7/2025','5:00 PM','7282018','New-York-City-Ballet--The-Nutcracker-12-7-2025'],['Juilliard Jazz Ensembles','Dizzys Club Coca-Cola','New York, NY','Monday','12/8/2025','7:00 PM','7507375','Juilliard-Jazz-Ensembles-12-8-2025'],['Juilliard Jazz Ensembles','Dizzys Club Coca-Cola','New York, NY','Monday','12/8/2025','9:00 PM','7507376','Juilliard-Jazz-Ensembles-12-8-2025'],['Big Apple Circus','Damrosch Park At Lincoln Center','New York, NY','Tuesday','12/9/2025','4:00 PM','7409359','Big-Apple-Circus-12-9-2025'],['Hometown Heroes','Dizzys Club Coca-Cola','New York, NY','Tuesday','12/9/2025','7:00 PM','7507360','Hometown-Heroes-12-9-2025']],'Lincoln Center','http://www.ticketnetwork.com/ticket/Lincoln-Center-events.aspx');