//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "Tickets",
tixUrl : "https://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
" +
row[3] +" "+"" +
row[4] + " "+"" +
row[5] + " | "+"" +
row[0] +" | " +
row[1] +" " +
row[2] +" | "+""+ this.linkText+ " |
";
},
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,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
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 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-01A
TN_Widget.CreateTable([['Vanya - Play','Lucille Lortel','New York, NY','Saturday','3/15/2025','2:00 PM','6734907','Vanya---Play-3-15-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Friday','3/21/2025','7:00 PM','6734900','Vanya---Play-3-21-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Saturday','3/22/2025','2:00 PM','6734908','Vanya---Play-3-22-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Wednesday','3/26/2025','7:00 PM','6734903','Vanya---Play-3-26-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Friday','3/28/2025','7:00 PM','6734905','Vanya---Play-3-28-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Saturday','3/29/2025','2:00 PM','6734909','Vanya---Play-3-29-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Sunday','3/30/2025','2:00 PM','6734910','Vanya---Play-3-30-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Saturday','4/5/2025','2:00 PM','6735057','Vanya---Play-4-5-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Sunday','4/6/2025','2:00 PM','6735058','Vanya---Play-4-6-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Friday','4/11/2025','7:00 PM','6734926','Vanya---Play-4-11-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Saturday','4/12/2025','2:00 PM','6735059','Vanya---Play-4-12-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Sunday','4/13/2025','2:00 PM','6735060','Vanya---Play-4-13-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Saturday','4/19/2025','2:00 PM','6735061','Vanya---Play-4-19-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Saturday','4/19/2025','7:00 PM','6734932','Vanya---Play-4-19-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Sunday','4/20/2025','2:00 PM','6735062','Vanya---Play-4-20-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Friday','4/25/2025','7:00 PM','6734936','Vanya---Play-4-25-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Saturday','4/26/2025','7:00 PM','6734937','Vanya---Play-4-26-2025'],['Vanya - Play','Lucille Lortel','New York, NY','Saturday','5/3/2025','7:00 PM','6735067','Vanya---Play-5-3-2025']],'Lucille Lortel Theatre','https://www.ticketnetwork.com/ticket/Lucille-Lortel-Theatre-events.aspx');