//
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-04A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Australian Pink Floyd Show','Synovus Bank Amphitheater at Chastain Park','Atlanta, GA','Sunday','7/26/2026','8:00 PM','7732028','Australian-Pink-Floyd-Show-7-26-2026'],['Death Cab for Cutie & Nation of Language','Stir Cove At Harrahs','Council Bluffs, IA','Sunday','7/26/2026','8:00 PM','7698508','Death-Cab-for-Cutie---Nation-of-Language-7-26-2026'],['Death Cab for Cutie & Nation of Language','Sandy Amphitheater','Sandy, UT','Wednesday','7/29/2026','7:00 PM','7698510','Death-Cab-for-Cutie---Nation-of-Language-7-29-2026'],['Bob Dylan','Synovus Bank Amphitheater at Chastain Park','Atlanta, GA','Friday','7/31/2026','7:00 PM','7896737','Bob-Dylan-7-31-2026'],['Death Cab for Cutie & Nation of Language','Arizona Financial Theatre','Phoenix, AZ','Friday','7/31/2026','8:00 PM','7698512','Death-Cab-for-Cutie---Nation-of-Language-7-31-2026'],['Off Campus Night - A Briar Nation Dance Party','Manchester Music Hall','Lexington, KY','Friday','7/31/2026','9:30 PM','8002788','Off-Campus-Night---A-Briar-Nation-Dance-Party-7-31-2026'],['O.A.R., Gavin DeGraw & Lisa Loeb','Synovus Bank Amphitheater at Chastain Park','Atlanta, GA','Saturday','8/1/2026','6:30 PM','7530013','O-A-R---Gavin-DeGraw---Lisa-Loeb-8-1-2026'],['Toto, Christopher Cross & The Romantics','MidFlorida Credit Union Amphitheatre At The Florida State Fairgrounds','Tampa, FL','Saturday','8/1/2026','6:45 PM','7612963','Toto--Christopher-Cross---The-Romantics-8-1-2026'],['Barry Manilow','Nationwide Arena','Columbus, OH','Sunday','8/2/2026','7:00 PM','7425018','Barry-Manilow-8-2-2026'],['Denver Summit FC vs. Boston Legacy FC','Centennial Stadium','Centennial, CO','Sunday','8/2/2026','7:00 PM','7681964','Denver-Summit-FC-vs--Boston-Legacy-FC-8-2-2026']],'"Live Nation"','https://www.ticketnetwork.com');