//
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([['Boston Red Sox vs. The Athletics','Fenway Park','Boston, MA','Tuesday','9/16/2025','6:45 PM','6574440','Boston-Red-Sox-vs--The-Athletics-9-16-2025'],['Boston Red Sox vs. The Athletics','Fenway Park','Boston, MA','Wednesday','9/17/2025','6:45 PM','6574441','Boston-Red-Sox-vs--The-Athletics-9-17-2025'],['Boston Red Sox vs. The Athletics','Fenway Park','Boston, MA','Thursday','9/18/2025','1:35 PM','6574442','Boston-Red-Sox-vs--The-Athletics-9-18-2025'],['Boston Rodeo','Boston City Hall Plaza','Boston, MA','Saturday','9/20/2025','2:00 PM','7374155','Boston-Rodeo-9-20-2025'],['NHL Preseason: Boston Bruins vs. Washington Capitals','TD Garden','Boston, MA','Sunday','9/21/2025','5:00 PM','7235812','NHL-Preseason--Boston-Bruins-vs--Washington-Capitals-9-21-2025'],['Exhibition: Boston University Women's Hockey vs. Concordia Stingers','Walter Brown Arena','Boston, MA','Friday','9/26/2025','6:00 PM','7385897','Exhibition--Boston-University-Women-s-Hockey-vs--Concordia-Stingers-9-26-2025'],['Boston Red Sox vs. Detroit Tigers','Fenway Park','Boston, MA','Friday','9/26/2025','7:10 PM','6574452','Boston-Red-Sox-vs--Detroit-Tigers-9-26-2025'],['Boston College Eagles vs. California Golden Bears','Alumni Stadium - Chestnut Hill','Chestnut Hill, MA','Saturday','9/27/2025','3:30 PM','6953523','Boston-College-Eagles-vs--California-Golden-Bears-9-27-2025'],['Boston Red Sox vs. Detroit Tigers','Fenway Park','Boston, MA','Saturday','9/27/2025','4:10 PM','6574453','Boston-Red-Sox-vs--Detroit-Tigers-9-27-2025'],['Boston Red Sox vs. Detroit Tigers','Fenway Park','Boston, MA','Sunday','9/28/2025','3:05 PM','6574455','Boston-Red-Sox-vs--Detroit-Tigers-9-28-2025'],['NHL Preseason: Boston Bruins vs. Philadelphia Flyers','TD Garden','Boston, MA','Monday','9/29/2025','7:00 PM','7235813','NHL-Preseason--Boston-Bruins-vs--Philadelphia-Flyers-9-29-2025'],['AL Wild Card: Boston Red Sox vs. TBD - Game 1 (Date: TBD - If Necessary)','Fenway Park','Boston, MA','Tuesday','9/30/2025','TBD','7305713','AL-Wild-Card--Boston-Red-Sox-vs--TBD---Game-1--Date--TBD---If-Necessary--9-30-2025'],['AL Wild Card: Boston Red Sox vs. TBD - Game 2 (Date: TBD - If Necessary)','Fenway Park','Boston, MA','Wednesday','10/1/2025','TBD','7305714','AL-Wild-Card--Boston-Red-Sox-vs--TBD---Game-2--Date--TBD---If-Necessary--10-1-2025'],['AL Wild Card: Boston Red Sox vs. TBD - Game 3 (Date: TBD - If Necessary)','Fenway Park','Boston, MA','Thursday','10/2/2025','TBD','7305715','AL-Wild-Card--Boston-Red-Sox-vs--TBD---Game-3--Date--TBD---If-Necessary--10-2-2025'],['Boston College Eagles vs. Quinnipiac Bobcats','Conte Forum','Chestnut Hill, MA','Friday','10/3/2025','TBD','7294616','Boston-College-Eagles-vs--Quinnipiac-Bobcats-10-3-2025']],'Boston Sports, MA','http://www.ticketnetwork.com/en/search/?text=Boston%20Sports,%20MA');