//
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 t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
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 newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Outlaw Music Festival: Willie Nelson, Bob Dylan, The Avett Brothers & The Mavericks','Dos Equis Pavilion','Dallas, TX','Saturday','7/5/2025','4:15 PM','6968002','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--The-Avett-Brothers---The-Mavericks-7-5-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, The Avett Brothers & The Mavericks','The Cynthia Woods Mitchell Pavilion','Spring, TX','Sunday','7/6/2025','4:05 PM','6968003','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--The-Avett-Brothers---The-Mavericks-7-6-2025'],['The Avett Brothers','Red Rocks Amphitheatre','Morrison, CO','Friday','7/11/2025','7:30 PM','6952690','The-Avett-Brothers-7-11-2025'],['The Avett Brothers','Red Rocks Amphitheatre','Morrison, CO','Saturday','7/12/2025','7:30 PM','6952691','The-Avett-Brothers-7-12-2025'],['The Avett Brothers','Red Rocks Amphitheatre','Morrison, CO','Sunday','7/13/2025','7:30 PM','6952692','The-Avett-Brothers-7-13-2025'],['The Avett Brothers','The Astro Amphitheater','La Vista, NE','Thursday','7/17/2025','7:00 PM','7040717','The-Avett-Brothers-7-17-2025'],['The Avett Brothers','Ozarks Amphitheater - Missouri','Camdenton, MO','Friday','7/18/2025','7:00 PM','7040718','The-Avett-Brothers-7-18-2025'],['The Avett Brothers & Dawes','Paycom Center','Oklahoma City, OK','Saturday','7/19/2025','8:00 PM','7040719','The-Avett-Brothers---Dawes-7-19-2025'],['The Avett Brothers','Chautauqua Institution Amphitheater','Chautauqua, NY','Friday','8/1/2025','8:15 PM','7071524','The-Avett-Brothers-8-1-2025'],['The Avett Brothers','Bethlehem Musikfest - Wind Creek Steel Stage','Bethlehem, PA','Saturday','8/2/2025','7:00 PM','6859447','The-Avett-Brothers-8-2-2025']],'"The Avett Brothers"','https://www.ticketnetwork.com');