//
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([['The Aquabats','Music Farm - Charleston','Charleston, SC','Thursday','9/3/2026','7:00 PM','7864084','The-Aquabats-9-3-2026'],['The Aquabats','The Underground - Charlotte','Charlotte, NC','Friday','9/4/2026','7:00 PM','7864187','The-Aquabats-9-4-2026'],['The Aquabats','Senator Theatre - CA','Chico, CA','Thursday','10/1/2026','7:00 PM','8133740','The-Aquabats-10-1-2026'],['The Aquabats','Cargo Concert Hall At Whitney Peak Hotel','Reno, NV','Friday','10/2/2026','7:00 PM','8133762','The-Aquabats-10-2-2026'],['The Aquabats','House Of Blues - Las Vegas','Las Vegas, NV','Saturday','10/3/2026','6:00 PM','8133727','The-Aquabats-10-3-2026'],['The Aquabats','Orpheum Theatre - Flagstaff','Flagstaff, AZ','Thursday','10/8/2026','7:00 PM','8133741','The-Aquabats-10-8-2026'],['The Aquabats','Marquee Theatre - AZ','Tempe, AZ','Friday','10/9/2026','7:00 PM','8133730','The-Aquabats-10-9-2026'],['The Aquabats','Ace of Spades','Sacramento, CA','Thursday','10/15/2026','6:00 PM','8133724','The-Aquabats-10-15-2026'],['The Aquabats','Majestic Ventura Theatre','Ventura, CA','Saturday','10/17/2026','7:00 PM','8133738','The-Aquabats-10-17-2026'],['The Aquabats','The Regency Ballroom','San Francisco, CA','Thursday','10/22/2026','7:00 PM','8133739','The-Aquabats-10-22-2026'],['The Aquabats','The Observatory - North Park','San Diego, CA','Friday','10/23/2026','6:00 PM','8133723','The-Aquabats-10-23-2026'],['The Aquabats','House Of Blues - Anaheim','Anaheim, CA','Saturday','10/24/2026','6:00 PM','8133722','The-Aquabats-10-24-2026']],'The Aquabats!','http://www.ticketnetwork.com/en/search/?text=The%20Aquabats!');