//
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-01B
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','Baltimore Soundstage','Baltimore, MD','Friday','5/2/2025','8:00 PM','6962543','The-Bouncing-Souls-5-2-2025'],['The Bouncing Souls','Nile Theater - AZ','Mesa, AZ','Thursday','5/22/2025','7:00 PM','6962998','The-Bouncing-Souls-5-22-2025'],['The Bouncing Souls','Ogden Theatre','Denver, CO','Monday','5/26/2025','7:00 PM','6959737','The-Bouncing-Souls-5-26-2025'],['The Bouncing Souls','The Depot - Salt Lake City','Salt Lake City, UT','Tuesday','5/27/2025','6:00 PM','6959736','The-Bouncing-Souls-5-27-2025'],['The Bouncing Souls','Treefort Music Hall','Boise, ID','Wednesday','5/28/2025','6:00 PM','6962544','The-Bouncing-Souls-5-28-2025'],['The Bouncing Souls','Revolution Hall - Portland','Portland, OR','Thursday','5/29/2025','8:00 PM','6958941','The-Bouncing-Souls-5-29-2025'],['The Bouncing Souls','The Crocodile','Seattle, WA','Friday','5/30/2025','8:00 PM','6958945','The-Bouncing-Souls-5-30-2025'],['The Bouncing Souls','Commodore Ballroom','Vancouver, Canada','Saturday','5/31/2025','7:00 PM','6959804','The-Bouncing-Souls-5-31-2025'],['The Bouncing Souls','Stone Pony Summer Stage','Asbury Park, NJ','Saturday','8/16/2025','5:00 PM','7024181','The-Bouncing-Souls-8-16-2025']],'The Bouncing Souls','http://www.ticketnetwork.com/en/search/?text=The Bouncing Souls');