//
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([['A Motown Christmas','The Collective Encore','Columbia, MD','Saturday','12/20/2025','1:00 PM','7559122','A-Motown-Christmas-12-20-2025'],['A Motown Christmas','The Collective Encore','Columbia, MD','Saturday','12/20/2025','8:00 PM','7559042','A-Motown-Christmas-12-20-2025'],['3AM & Shine - 90s Tribute To Matchbox 20 & Collective Soul','The Celestia Theater At Wadsworth Square','Wadsworth, OH','Friday','1/9/2026','8:00 PM','7417033','3AM---Shine---90s-Tribute-To-Matchbox-20---Collective-Soul-1-9-2026'],['Collective Soul','City National Grove of Anaheim','Anaheim, CA','Thursday','1/29/2026','8:00 PM','7558538','Collective-Soul-1-29-2026'],['Collective Soul','The Show - Agua Caliente Casino','Rancho Mirage, CA','Friday','1/30/2026','8:00 PM','7560436','Collective-Soul-1-30-2026'],['Collective Soul','The Event At Graton Resort & Casino','Rohnert Park, CA','Saturday','1/31/2026','8:00 PM','7580903','Collective-Soul-1-31-2026'],['Collective Soul','Venetian Theatre At the Venetian Hotel Las Vegas','Las Vegas, NV','Wednesday','2/4/2026','8:30 PM','7458123','Collective-Soul-2-4-2026'],['Collective Soul','Venetian Theatre At the Venetian Hotel Las Vegas','Las Vegas, NV','Friday','2/6/2026','8:30 PM','7458124','Collective-Soul-2-6-2026'],['Collective Soul','Venetian Theatre At the Venetian Hotel Las Vegas','Las Vegas, NV','Saturday','2/7/2026','8:30 PM','7458125','Collective-Soul-2-7-2026']],'collective soul','http://www.ticketnetwork.com/en/search/?text=collective%20soul');