//
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 dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
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 newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-02A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['Pen Pals - Play','Dr2 Theatre','New York, NY','Tuesday','11/4/2025','7:00 PM','7399400','Pen-Pals---Play-11-4-2025'],['Richard II','Astor Place Theatre','New York, NY','Tuesday','11/4/2025','7:00 PM','7396468','Richard-II-11-4-2025'],['Little Bear Ridge Road','Booth Theatre','New York, NY','Tuesday','11/4/2025','7:00 PM','7343729','Little-Bear-Ridge-Road-11-4-2025'],['Liberation','James Earl Jones Theatre','New York, NY','Tuesday','11/4/2025','7:00 PM','7333102','Liberation-11-4-2025'],['Prince Faggot','Studio Seaview','New York, NY','Tuesday','11/4/2025','7:00 PM','7405322','Prince-Faggot-11-4-2025'],['Just in Time','Circle In The Square Theatre','New York, NY','Tuesday','11/4/2025','7:00 PM','7125391','Just-in-Time-11-4-2025'],['Death Becomes Her','Lunt-fontanne Theatre','New York, NY','Tuesday','11/4/2025','7:00 PM','7126346','Death-Becomes-Her-11-4-2025'],['Hell's Kitchen - The Musical','Shubert Theatre - NY','New York, NY','Tuesday','11/4/2025','7:00 PM','7126608','Hell-s-Kitchen---The-Musical-11-4-2025'],['Waiting for Godot','Millennium Hudson Theatre','New York, NY','Tuesday','11/4/2025','7:00 PM','7098711','Waiting-for-Godot-11-4-2025'],['Hamilton','Richard Rodgers Theatre','New York, NY','Tuesday','11/4/2025','7:00 PM','7091844','Hamilton-11-4-2025'],['Operation Mincemeat','John Golden Theatre','New York, NY','Tuesday','11/4/2025','7:00 PM','7066241','Operation-Mincemeat-11-4-2025'],['Wicked','Gershwin Theatre','New York, NY','Tuesday','11/4/2025','7:00 PM','7071433','Wicked-11-4-2025'],['Art - Play','Music Box Theatre - NY','New York, NY','Tuesday','11/4/2025','7:00 PM','7185053','Art---Play-11-4-2025'],['Harry Potter and The Cursed Child','Lyric Theatre - New York','New York, NY','Tuesday','11/4/2025','7:00 PM','7172352','Harry-Potter-and-The-Cursed-Child-11-4-2025'],['Chicago - The Musical','Ambassador Theatre - NY','New York, NY','Tuesday','11/4/2025','7:00 PM','6992143','Chicago---The-Musical-11-4-2025'],['Hadestown','Walter Kerr Theatre','New York, NY','Tuesday','11/4/2025','7:00 PM','6968605','Hadestown-11-4-2025'],['The Outsiders','Bernard B. Jacobs Theater','New York, NY','Tuesday','11/4/2025','7:00 PM','7007784','The-Outsiders-11-4-2025'],['Moulin Rouge - The Musical','Al Hirschfeld Theatre','New York, NY','Tuesday','11/4/2025','7:00 PM','7003423','Moulin-Rouge---The-Musical-11-4-2025'],['Mamma Mia!','Winter Garden Theatre - New York','New York, NY','Tuesday','11/4/2025','7:00 PM','7035804','Mamma-Mia--11-4-2025'],['& Juliet','Stephen Sondheim Theatre','New York, NY','Tuesday','11/4/2025','7:00 PM','7047822','--Juliet-11-4-2025']],'Broadway Shows','http://www.ticketnetwork.com/en/search/?text=Broadway%20Shows');