//
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-03A
TN_Widget.CreateTable([['Garrison Keillor','Lincoln Center Performance Hall','Fort Collins, CO','Sunday','11/23/2025','2:00 PM','7215084','Garrison-Keillor-11-23-2025'],['Paul Taylor Dance Company','David H. Koch Theater','New York, NY','Sunday','11/23/2025','3:00 PM','7401484','Paul-Taylor-Dance-Company-11-23-2025'],['Kyoto','Mitzi E. Newhouse Theater at Lincoln Center','New York, NY','Sunday','11/23/2025','3:00 PM','7333038','Kyoto-11-23-2025'],['Ragtime','Vivian Beaumont Theatre at Lincoln Center','New York, NY','Sunday','11/23/2025','3:00 PM','7146395','Ragtime-11-23-2025'],['Big Apple Circus','Damrosch Park At Lincoln Center','New York, NY','Sunday','11/23/2025','4:00 PM','7409346','Big-Apple-Circus-11-23-2025'],['Metropolitan Opera: Andrea Chenier','Metropolitan Opera at Lincoln Center','New York, NY','Monday','11/24/2025','7:30 PM','7001218','Metropolitan-Opera--Andrea-Chenier-11-24-2025'],['Future of Jazz Orchestra','Dizzys Club Coca-Cola','New York, NY','Monday','11/24/2025','9:00 PM','7507326','Future-of-Jazz-Orchestra-11-24-2025'],['Ragtime','Vivian Beaumont Theatre at Lincoln Center','New York, NY','Tuesday','11/25/2025','7:00 PM','7146396','Ragtime-11-25-2025'],['Metropolitan Opera: Arabella','Metropolitan Opera at Lincoln Center','New York, NY','Tuesday','11/25/2025','7:30 PM','7001223','Metropolitan-Opera--Arabella-11-25-2025'],['Kyoto','Mitzi E. Newhouse Theater at Lincoln Center','New York, NY','Tuesday','11/25/2025','7:30 PM','7333040','Kyoto-11-25-2025']],'Lincoln Center','http://www.ticketnetwork.com/ticket/Lincoln-Center-events.aspx');