//
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 Wood Brothers','Belly Up Tavern','Solana Beach, CA','Wednesday','3/19/2025','8:00 PM','6782612','The-Wood-Brothers-3-19-2025'],['The Wood Brothers','Belly Up Tavern','Solana Beach, CA','Thursday','3/20/2025','8:00 PM','6782613','The-Wood-Brothers-3-20-2025'],['The Wood Brothers','Teragram Ballroom','Los Angeles, CA','Friday','3/21/2025','8:00 PM','6782743','The-Wood-Brothers-3-21-2025'],['The Wood Brothers','The Fillmore - San Francisco','San Francisco, CA','Saturday','3/22/2025','8:00 PM','6782744','The-Wood-Brothers-3-22-2025'],['The Wood Brothers','The Center For The Arts - Grass Valley','Grass Valley, CA','Sunday','3/23/2025','7:00 PM','6782749','The-Wood-Brothers-3-23-2025'],['The Wood Brothers','Midtown Ballroom','Bend, OR','Thursday','3/27/2025','8:00 PM','6782750','The-Wood-Brothers-3-27-2025'],['The Wood Brothers','McMenamins Crystal Ballroom','Portland, OR','Friday','3/28/2025','8:00 PM','6782341','The-Wood-Brothers-3-28-2025'],['The Wood Brothers','Mount Baker Theatre','Bellingham, WA','Saturday','3/29/2025','7:30 PM','6782751','The-Wood-Brothers-3-29-2025'],['The Wood Brothers','Harvester Performance Center','Rocky Mount, VA','Wednesday','5/21/2025','8:00 PM','6950675','The-Wood-Brothers-5-21-2025'],['The Wood Brothers','Upper Merion Township Building Park','King Of Prussia, PA','Friday','5/23/2025','7:00 PM','6951123','The-Wood-Brothers-5-23-2025'],['The Wood Brothers','Stone Pony','Asbury Park, NJ','Saturday','5/24/2025','7:00 PM','6949645','The-Wood-Brothers-5-24-2025']],'The Wood Brothers','http://www.ticketnetwork.com/en/search/?text=The Wood Brothers');