//
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([['Austin Blues Festival: Parliament Funkadelic, George Clinton, Badbadnotgood & Eric Johnson - 2 Day Pass','Moody Amphitheater','Austin, TX','Saturday','4/25/2026','TBD','7602921','Austin-Blues-Festival--Parliament-Funkadelic--George-Clinton--Badbadnotgood---Eric-Johnson---2-Day-Pass-4-25-2026'],['Austin Blues Festival: George Clinton, Larkin Poe & The War and Treaty - Sunday','Moody Amphitheater','Austin, TX','Sunday','4/26/2026','1:00 PM','7704437','Austin-Blues-Festival--George-Clinton--Larkin-Poe---The-War-and-Treaty---Sunday-4-26-2026'],['The War and Treaty','Bottle & Cork','Dewey Beach, DE','Thursday','6/18/2026','8:00 PM','7693042','The-War-and-Treaty-6-18-2026'],['Green River Festival: Charley Crockett, The War and Treaty & Kashus Culpepper - Friday','Franklin County Fairgrounds - Greenfield','Greenfield, MA','Friday','6/19/2026','10:00 AM','7459956','Green-River-Festival--Charley-Crockett--The-War-and-Treaty---Kashus-Culpepper---Friday-6-19-2026'],['The War and Treaty','The Vogel at the Count Basie Center for the Arts','Red Bank, NJ','Saturday','6/20/2026','7:30 PM','7693378','The-War-and-Treaty-6-20-2026'],['The War and Treaty','The Burl ','Lexington, KY','Tuesday','6/23/2026','8:00 PM','7693317','The-War-and-Treaty-6-23-2026'],['Trombone Shorty And Orleans Avenue, Mavis Staples & The War and Treaty','Wolf Trap National Park for the Performing Arts','Vienna, VA','Saturday','7/18/2026','7:00 PM','7731584','Trombone-Shorty-And-Orleans-Avenue--Mavis-Staples---The-War-and-Treaty-7-18-2026'],['Bristol Rhythm & Roots Festival: Sierra Ferrell, The War and Treaty & Marty Stuart and His Fabulous Superlatives - 3 Day Pass','Bristol Festival Grounds','Bristol, TN','Friday','9/11/2026','TBD','7606574','Bristol-Rhythm---Roots-Festival--Sierra-Ferrell--The-War-and-Treaty---Marty-Stuart-and-His-Fabulous-Superlatives---3-Day-Pass-9-11-2026']],'The War And Treaty','http://www.ticketnetwork.com/en/search/?text=The%20War%20And%20Treaty');