//
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-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Boston Legacy FC vs. Angel City FC','Gillette Stadium','Foxborough, MA','Monday','8/31/2026','8:00 PM','7681524','Boston-Legacy-FC-vs--Angel-City-FC-8-31-2026'],['Utah Royals vs. Boston Legacy FC','America First Field','Sandy, UT','Friday','9/4/2026','7:30 PM','7681683','Utah-Royals-vs--Boston-Legacy-FC-9-4-2026'],['Yolanda Adams','Synovus Bank Amphitheater at Chastain Park','Atlanta, GA','Friday','9/4/2026','8:00 PM','8130703','Yolanda-Adams-9-4-2026'],['Blues Traveler, Gin Blossoms & Spin Doctors','Synovus Bank Amphitheater at Chastain Park','Atlanta, GA','Saturday','9/5/2026','6:00 PM','7689634','Blues-Traveler--Gin-Blossoms---Spin-Doctors-9-5-2026'],['Billy Nation - Billy Joel Tribute','Wente Vineyards','Livermore, CA','Saturday','9/5/2026','8:00 PM','8135609','Billy-Nation---Billy-Joel-Tribute-9-5-2026'],['Raphael Saadiq','Synovus Bank Amphitheater at Chastain Park','Atlanta, GA','Sunday','9/6/2026','8:00 PM','8130717','Raphael-Saadiq-9-6-2026'],['16volt & Acumen Nation','Chop Suey','Seattle, WA','Monday','9/7/2026','8:00 PM','8171000','16volt---Acumen-Nation-9-7-2026'],['Shreya Ghoshal','Nationwide Arena','Columbus, OH','Wednesday','9/9/2026','7:00 PM','7875112','Shreya-Ghoshal-9-9-2026'],['Luke Bryan','MidFlorida Credit Union Amphitheatre At The Florida State Fairgrounds','Tampa, FL','Thursday','9/10/2026','7:00 PM','7697653','Luke-Bryan-9-10-2026'],['Kehlani','MidFlorida Credit Union Amphitheatre At The Florida State Fairgrounds','Tampa, FL','Friday','9/11/2026','6:30 PM','7998048','Kehlani-9-11-2026']],'"Live Nation"','https://www.ticketnetwork.com');