//
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-02A
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 Bouncing Souls','Stone Pony Summer Stage','Asbury Park, NJ','Saturday','6/27/2026','5:00 PM','7753104','The-Bouncing-Souls-6-27-2026'],['The Bouncing Souls','Park Theatre - Winnipeg','Winnipeg, Canada','Sunday','7/12/2026','6:00 PM','7877850','The-Bouncing-Souls-7-12-2026'],['The Bouncing Souls','Midway - Edmonton','Edmonton, Canada','Tuesday','7/14/2026','6:00 PM','7877852','The-Bouncing-Souls-7-14-2026'],['The Bouncing Souls','Palace Theatre - Calgary','Calgary, Canada','Wednesday','7/15/2026','6:00 PM','7877849','The-Bouncing-Souls-7-15-2026'],['The Bouncing Souls','Music Farm - Charleston','Charleston, SC','Friday','9/11/2026','8:00 PM','7877848','The-Bouncing-Souls-9-11-2026'],['The Bouncing Souls','Baltimore Soundstage','Baltimore, MD','Wednesday','9/16/2026','7:00 PM','7877851','The-Bouncing-Souls-9-16-2026'],['The Bouncing Souls','Bogarts','Cincinnati, OH','Friday','9/18/2026','7:00 PM','7877666','The-Bouncing-Souls-9-18-2026'],['The Bouncing Souls','House Of Blues - Cleveland','Cleveland, OH','Wednesday','12/2/2026','7:00 PM','7877668','The-Bouncing-Souls-12-2-2026'],['The Bouncing Souls','Worcester Palladium','Worcester, MA','Thursday','12/10/2026','7:00 PM','7877769','The-Bouncing-Souls-12-10-2026'],['The Bouncing Souls','The Observatory - North Park','San Diego, CA','Friday','2/12/2027','7:00 PM','7877669','The-Bouncing-Souls-2-12-2027'],['The Bouncing Souls','The Observatory - Santa Ana','Santa Ana, CA','Saturday','2/13/2027','7:00 PM','7877667','The-Bouncing-Souls-2-13-2027'],['The Bouncing Souls','House Of Blues - Las Vegas','Las Vegas, NV','Monday','2/15/2027','7:00 PM','7877665','The-Bouncing-Souls-2-15-2027'],['The Bouncing Souls','Belasco Theater - LA','Los Angeles, CA','Tuesday','2/16/2027','7:00 PM','7877670','The-Bouncing-Souls-2-16-2027'],['The Bouncing Souls','The UC Theatre','Berkeley, CA','Wednesday','2/17/2027','7:00 PM','7877768','The-Bouncing-Souls-2-17-2027'],['The Bouncing Souls','Revolution Hall - Portland','Portland, OR','Friday','2/19/2027','7:00 PM','7877772','The-Bouncing-Souls-2-19-2027']],'The Bouncing Souls','http://www.ticketnetwork.com/en/search/?text=The Bouncing Souls');