//
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-04A
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([['2026 US Open Tennis Championships: Grandstand - Session 1','Grandstand Stadium at National Tennis Center','Flushing, NY','Sunday','8/30/2026','11:00 AM','7396776','2026-US-Open-Tennis-Championships--Grandstand---Session-1-8-30-2026'],['2026 US Open Tennis Championships: Grandstand - Session 3','Grandstand Stadium at National Tennis Center','Flushing, NY','Monday','8/31/2026','11:00 AM','7396778','2026-US-Open-Tennis-Championships--Grandstand---Session-3-8-31-2026'],['2026 US Open Tennis Championships: Grandstand - Session 5','Grandstand Stadium at National Tennis Center','Flushing, NY','Tuesday','9/1/2026','11:00 AM','7396780','2026-US-Open-Tennis-Championships--Grandstand---Session-5-9-1-2026'],['2026 US Open Tennis Championships: Grandstand - Session 7','Grandstand Stadium at National Tennis Center','Flushing, NY','Wednesday','9/2/2026','11:00 AM','7396789','2026-US-Open-Tennis-Championships--Grandstand---Session-7-9-2-2026'],['2026 US Open Tennis Championships: Grandstand - Session 9','Grandstand Stadium at National Tennis Center','Flushing, NY','Thursday','9/3/2026','11:00 AM','7396790','2026-US-Open-Tennis-Championships--Grandstand---Session-9-9-3-2026'],['2026 US Open Tennis Championships: Grandstand - Session 11','Grandstand Stadium at National Tennis Center','Flushing, NY','Friday','9/4/2026','11:00 AM','7396792','2026-US-Open-Tennis-Championships--Grandstand---Session-11-9-4-2026'],['2026 US Open Tennis Championships: Grandstand - Session 13','Grandstand Stadium at National Tennis Center','Flushing, NY','Saturday','9/5/2026','11:00 AM','7396793','2026-US-Open-Tennis-Championships--Grandstand---Session-13-9-5-2026']],'us open grandstand','http://www.ticketnetwork.com/en/search/?text=us%20open%20grandstand');