//
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([['PARKING: Dallas Cowboys Season Parking (Includes Parking To All Regular Season Home Games)','AT&T Stadium Parking Lots','Arlington, TX','Saturday','9/13/2025','TBD','7384892','PARKING--Dallas-Cowboys-Season-Parking--Includes-Parking-To-All-Regular-Season-Home-Games--9-13-2025'],['Dallas Cowboys Season Tickets (Includes Tickets To All Regular Season Home Games)','AT&T Stadium','Arlington, TX','Saturday','9/13/2025','TBD','6907022','Dallas-Cowboys-Season-Tickets--Includes-Tickets-To-All-Regular-Season-Home-Games--9-13-2025'],['Tailgreeter Tailgate: Dallas Cowboys vs. New York Giants','All-Inclusive Tailgates Lot - Arlington','Arlington, TX','Sunday','9/14/2025','TBD','7229333','Tailgreeter-Tailgate--Dallas-Cowboys-vs--New-York-Giants-9-14-2025'],['PARKING: Dallas Cowboys vs. New York Giants','AT&T Stadium Parking Lots','Arlington, TX','Sunday','9/14/2025','TBD','7158817','PARKING--Dallas-Cowboys-vs--New-York-Giants-9-14-2025'],['Dallas Cowboys vs. New York Giants','AT&T Stadium','Arlington, TX','Sunday','9/14/2025','12:00 PM','6977876','Dallas-Cowboys-vs--New-York-Giants-9-14-2025'],['PARKING: Chicago Bears vs. Dallas Cowboys','Soldier Field Parking Lot','Chicago, IL','Sunday','9/21/2025','TBD','7159474','PARKING--Chicago-Bears-vs--Dallas-Cowboys-9-21-2025'],['Premium Tailgate Party: Chicago Bears vs. Dallas Cowboys','Premium Tailgate Lot - Chicago','Chicago, IL','Sunday','9/21/2025','TBD','7160312','Premium-Tailgate-Party--Chicago-Bears-vs--Dallas-Cowboys-9-21-2025'],['Tailgreeter Tailgate: Chicago Bears vs. Dallas Cowboys','Tailgreeter All-Inclusive Tailgate - Soldier Field','Chicago, IL','Sunday','9/21/2025','TBD','7229114','Tailgreeter-Tailgate--Chicago-Bears-vs--Dallas-Cowboys-9-21-2025'],['Chicago Bears vs. Dallas Cowboys','Soldier Field','Chicago, IL','Sunday','9/21/2025','3:25 PM','6977976','Chicago-Bears-vs--Dallas-Cowboys-9-21-2025'],['PARKING: Dallas Cowboys vs. Green Bay Packers','AT&T Stadium Parking Lots','Arlington, TX','Sunday','9/28/2025','TBD','7158818','PARKING--Dallas-Cowboys-vs--Green-Bay-Packers-9-28-2025']],'Dallas Cowboys','https://www.ticketnetwork.com');