//
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.AddCss('//tn-widget.seatics.com/widget2Css/WidgetStyle9.css');
TN_Widget.CreateTable([['New York Giants vs. Green Bay Packers','MetLife Stadium','East Rutherford, NJ','Sunday','11/16/2025','1:00 PM','6977622','New-York-Giants-vs--Green-Bay-Packers-11-16-2025'],['PARKING: Las Vegas Raiders vs. Dallas Cowboys','Allegiant Stadium Parking Lots','Las Vegas, NV','Monday','11/17/2025','TBD','7159291','PARKING--Las-Vegas-Raiders-vs--Dallas-Cowboys-11-17-2025'],['Las Vegas Raiders vs. Dallas Cowboys','Allegiant Stadium','Las Vegas, NV','Monday','11/17/2025','5:15 PM','6977842','Las-Vegas-Raiders-vs--Dallas-Cowboys-11-17-2025'],['Premium Tailgate Party: Houston Texans vs. Buffalo Bills','Premium Tailgate Tent - Houston','Houston, TX','Thursday','11/20/2025','TBD','7160371','Premium-Tailgate-Party--Houston-Texans-vs--Buffalo-Bills-11-20-2025'],['PARKING: Houston Texans vs. Buffalo Bills','NRG Stadium Parking Lots','Houston, TX','Thursday','11/20/2025','TBD','7159049','PARKING--Houston-Texans-vs--Buffalo-Bills-11-20-2025'],['Houston Texans vs. Buffalo Bills','NRG Stadium','Houston, TX','Thursday','11/20/2025','7:15 PM','6977701','Houston-Texans-vs--Buffalo-Bills-11-20-2025'],['Premium Tailgate Party: Baltimore Ravens vs. New York Jets','Premium Tailgate Tent - Baltimore','Baltimore, MD','Sunday','11/23/2025','TBD','7160306','Premium-Tailgate-Party--Baltimore-Ravens-vs--New-York-Jets-11-23-2025'],['Premium Tailgate Party: Detroit Lions vs. New York Giants','Premium Tailgate Lot - Detroit','Detroit, MI','Sunday','11/23/2025','TBD','7160332','Premium-Tailgate-Party--Detroit-Lions-vs--New-York-Giants-11-23-2025'],['PARKING: Baltimore Ravens vs. New York Jets','M&T Bank Stadium Parking Lots','Baltimore, MD','Sunday','11/23/2025','TBD','7159136','PARKING--Baltimore-Ravens-vs--New-York-Jets-11-23-2025'],['PARKING: Detroit Lions vs. New York Giants','Ford Field Parking Lots','Detroit, MI','Sunday','11/23/2025','TBD','7159252','PARKING--Detroit-Lions-vs--New-York-Giants-11-23-2025']],'NFL Tickets','http://www.ticketnetwork.com/ticket/NFL-Tickets-events.aspx');