//
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 t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
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;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['FIFA World Cup 26: Group F: Netherlands vs. Japan - Match 11','AT&T Stadium','Arlington, TX','Sunday','6/14/2026','3:00 PM','6250390','FIFA-World-Cup-26--Group-F--Netherlands-vs--Japan---Match-11-6-14-2026'],['FIFA World Cup 26: Group L: England vs. Croatia - Match 22','AT&T Stadium','Arlington, TX','Wednesday','6/17/2026','3:00 PM','6259681','FIFA-World-Cup-26--Group-L--England-vs--Croatia---Match-22-6-17-2026'],['FIFA World Cup 26: Group J: Argentina vs. Austria - Match 43','AT&T Stadium','Arlington, TX','Monday','6/22/2026','12:00 PM','6259682','FIFA-World-Cup-26--Group-J--Argentina-vs--Austria---Match-43-6-22-2026'],['FIFA World Cup 26: Group F: Japan vs. Sweden - Match 57','AT&T Stadium','Arlington, TX','Thursday','6/25/2026','6:00 PM','6259683','FIFA-World-Cup-26--Group-F--Japan-vs--Sweden---Match-57-6-25-2026'],['FIFA World Cup 26: Group J: Jordan vs. Argentina - Match 70','AT&T Stadium','Arlington, TX','Saturday','6/27/2026','9:00 PM','6259684','FIFA-World-Cup-26--Group-J--Jordan-vs--Argentina---Match-70-6-27-2026'],['FIFA World Cup 26: Round of 32: 2E vs. 2I - Match 78','AT&T Stadium','Arlington, TX','Tuesday','6/30/2026','12:00 PM','6259685','FIFA-World-Cup-26--Round-of-32--2E-vs--2I---Match-78-6-30-2026'],['FIFA World Cup 26: Round of 32: 2D vs. 2G - Match 88','AT&T Stadium','Arlington, TX','Friday','7/3/2026','1:00 PM','6259686','FIFA-World-Cup-26--Round-of-32--2D-vs--2G---Match-88-7-3-2026'],['FIFA World Cup 26: Round of 16: W83 vs. W84 - Match 93','AT&T Stadium','Arlington, TX','Monday','7/6/2026','2:00 PM','6259714','FIFA-World-Cup-26--Round-of-16--W83-vs--W84---Match-93-7-6-2026'],['FIFA World Cup 26: Semi-Finals: W97 vs. W98 - Match 101','AT&T Stadium','Arlington, TX','Tuesday','7/14/2026','2:00 PM','6259550','FIFA-World-Cup-26--Semi-Finals--W97-vs--W98---Match-101-7-14-2026'],['PARKING: NFL Preseason - Seattle Seahawks vs. Dallas Cowboys','Lumen Field Parking Lots','Seattle, WA','Saturday','8/15/2026','TBD','7967447','PARKING--NFL-Preseason---Seattle-Seahawks-vs--Dallas-Cowboys-8-15-2026']],'"Dallas Cowboys"','https://www.ticketnetwork.com');