//
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-01A
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([['Gente De Zona','Fabulous Fox Theatre - Atlanta','Atlanta, GA','Friday','10/2/2026','8:00 PM','7965038','Gente-De-Zona-10-2-2026'],['Smokey Robinson','Fabulous Fox Theatre - Atlanta','Atlanta, GA','Saturday','10/3/2026','7:30 PM','8169442','Smokey-Robinson-10-3-2026'],['Atlanta Ballet II: Cinderella','Fabulous Fox Theatre - Atlanta','Atlanta, GA','Friday','10/16/2026','7:30 PM','8066211','Atlanta-Ballet-II--Cinderella-10-16-2026'],['Atlanta Ballet II: Cinderella','Fabulous Fox Theatre - Atlanta','Atlanta, GA','Saturday','10/17/2026','1:00 PM','8066212','Atlanta-Ballet-II--Cinderella-10-17-2026'],['Atlanta Ballet II: Cinderella','Fabulous Fox Theatre - Atlanta','Atlanta, GA','Saturday','10/17/2026','5:00 PM','8066213','Atlanta-Ballet-II--Cinderella-10-17-2026'],['Outlander In Concert','Fabulous Fox Theatre - Atlanta','Atlanta, GA','Sunday','10/18/2026','4:00 PM','7828495','Outlander-In-Concert-10-18-2026'],['Georgia Symphony Orchestra: The Ring In Concert','Fabulous Fox Theatre - Atlanta','Atlanta, GA','Wednesday','10/21/2026','8:00 PM','8169449','Georgia-Symphony-Orchestra--The-Ring-In-Concert-10-21-2026'],['Brand New','Fabulous Fox Theatre - Atlanta','Atlanta, GA','Thursday','10/22/2026','8:00 PM','8062595','Brand-New-10-22-2026'],['Sonic Live In Concert','Fabulous Fox Theatre - Atlanta','Atlanta, GA','Saturday','10/24/2026','7:30 PM','7999830','Sonic-Live-In-Concert-10-24-2026'],['Buena Vista Social Club - Musical','Fabulous Fox Theatre - Atlanta','Atlanta, GA','Tuesday','10/27/2026','7:30 PM','7689715','Buena-Vista-Social-Club---Musical-10-27-2026']],'Fox Theatre Atlanta','http://www.ticketnetwork.com/en/search/?text=Fox%20Theatre%20Atlanta');