//
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([['Philadelphia Eagles Season Tickets (Includes Tickets To All Regular Season Home Games)','Lincoln Financial Field','Philadelphia, PA','Friday','9/11/2026','TBD','7662976','Philadelphia-Eagles-Season-Tickets--Includes-Tickets-To-All-Regular-Season-Home-Games--9-11-2026'],['New York Giants Season Tickets (Includes Tickets To All Regular Season Home Games)','MetLife Stadium','East Rutherford, NJ','Saturday','9/12/2026','TBD','7662972','New-York-Giants-Season-Tickets--Includes-Tickets-To-All-Regular-Season-Home-Games--9-12-2026'],['Cincinnati Bengals Season Tickets (Includes Tickets To All Regular Season Home Games)','Paycor Stadium','Cincinnati, OH','Saturday','9/12/2026','TBD','7663034','Cincinnati-Bengals-Season-Tickets--Includes-Tickets-To-All-Regular-Season-Home-Games--9-12-2026'],['Indianapolis Colts Season Tickets (Includes Tickets To All Regular Season Home Games)','Lucas Oil Stadium','Indianapolis, IN','Saturday','9/12/2026','TBD','7663040','Indianapolis-Colts-Season-Tickets--Includes-Tickets-To-All-Regular-Season-Home-Games--9-12-2026'],['Jacksonville Jaguars Season Tickets (Includes Tickets To All Regular Season Home Games)','EverBank Stadium','Jacksonville, FL','Saturday','9/12/2026','TBD','7663041','Jacksonville-Jaguars-Season-Tickets--Includes-Tickets-To-All-Regular-Season-Home-Games--9-12-2026'],['Carolina Panthers Season Tickets (Includes Tickets To All Regular Season Home Games)','Bank Of America Stadium','Charlotte, NC','Saturday','9/12/2026','TBD','7662928','Carolina-Panthers-Season-Tickets--Includes-Tickets-To-All-Regular-Season-Home-Games--9-12-2026'],['Detroit Lions Season Tickets (Includes Tickets To All Regular Season Home Games)','Ford Field','Detroit, MI','Saturday','9/12/2026','TBD','7662960','Detroit-Lions-Season-Tickets--Includes-Tickets-To-All-Regular-Season-Home-Games--9-12-2026'],['Tennessee Titans Season Tickets (Includes Tickets To All Regular Season Home Games)','Nissan Stadium - Nashville','Nashville, TN','Saturday','9/12/2026','TBD','7663056','Tennessee-Titans-Season-Tickets--Includes-Tickets-To-All-Regular-Season-Home-Games--9-12-2026'],['Houston Texans Season Tickets (Includes Tickets To All Regular Season Home Games)','Reliant Stadium','Houston, TX','Saturday','9/12/2026','TBD','7663038','Houston-Texans-Season-Tickets--Includes-Tickets-To-All-Regular-Season-Home-Games--9-12-2026'],['Las Vegas Raiders Season Tickets (Includes Tickets To All Regular Season Home Games)','Allegiant Stadium','Las Vegas, NV','Saturday','9/12/2026','TBD','7663045','Las-Vegas-Raiders-Season-Tickets--Includes-Tickets-To-All-Regular-Season-Home-Games--9-12-2026']],'nfl','http://www.ticketnetwork.com/en/search/?text=nfl');