//
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-03A
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([['Collective Soul','The Refinery - SC','North Charleston, SC','Friday','9/11/2026','7:30 PM','7998814','Collective-Soul-9-11-2026'],['Collective Soul','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Sunday','9/13/2026','6:30 PM','7786005','Collective-Soul-9-13-2026'],['Collective Soul','Humphreys Concerts By The Bay','San Diego, CA','Friday','9/25/2026','7:30 PM','7998845','Collective-Soul-9-25-2026'],['Collective Soul','The Salt River Grand Ballroom at Talking Stick Resort','Scottsdale, AZ','Saturday','9/26/2026','8:00 PM','8039062','Collective-Soul-9-26-2026'],['Collective Soul','Palace Theatre Albany','Albany, NY','Tuesday','10/20/2026','8:00 PM','8097789','Collective-Soul-10-20-2026'],['Collective Soul','Santander Performing Arts Center','Reading, PA','Wednesday','10/21/2026','7:30 PM','8097791','Collective-Soul-10-21-2026'],['Collective Soul','Harrah's Cherokee Resort Event Center','Cherokee, NC','Friday','10/23/2026','9:00 PM','8097790','Collective-Soul-10-23-2026'],['Collective Soul','Hard Rock Cincinnati - Ballroom','Cincinnati, OH','Saturday','10/24/2026','8:00 PM','8113684','Collective-Soul-10-24-2026'],['Collective Soul','Southern Kentucky Performing Arts Center','Bowling Green, KY','Sunday','10/25/2026','7:30 PM','8185681','Collective-Soul-10-25-2026'],['Collective Soul','Capitol Theatre - Port Chester','Port Chester, NY','Friday','8/28/2076','8:00 PM','7997419','Collective-Soul-8-28-2076'],['Collective Soul','Ovation Hall at Ocean Resort Casino ','Atlantic City, NJ','Saturday','8/29/2076','8:00 PM','7793745','Collective-Soul-8-29-2076'],['Collective Soul','Blue Gate Performing Arts Center','Shipshewana, IN','Tuesday','9/1/2076','7:30 PM','7996164','Collective-Soul-9-1-2076'],['Collective Soul','The Event Center At Rivers Casino Des Plaines','Rosemont, IL','Friday','9/4/2076','8:00 PM','7938929','Collective-Soul-9-4-2076']],'Collective Soul','http://www.ticketnetwork.com/en/search/?text=Collective Soul');