//
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-04A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Willie Nelson's 4th of July Picnic and Fireworks: Willie Nelson, Bob Dylan, The Avett Brothers, The Mavericks & Asleep At The Wheel','Germania Insurance Amphitheater','Austin, TX','Friday','7/4/2025','3:30 PM','7020083','Willie-Nelson-s-4th-of-July-Picnic-and-Fireworks--Willie-Nelson--Bob-Dylan--The-Avett-Brothers--The-Mavericks---Asleep-At-The-Wheel-7-4-2025'],['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'],['One More Weekend: A Bob Dylan Revue','Rumba Cafe','Columbus, OH','Friday','7/11/2025','7:30 PM','7204351','One-More-Weekend--A-Bob-Dylan-Revue-7-11-2025'],['One More Weekend: A Bob Dylan Revue','Rumba Cafe','Columbus, OH','Saturday','7/12/2025','7:30 PM','7204350','One-More-Weekend--A-Bob-Dylan-Revue-7-12-2025'],['Joan Osborne - The Songs of Bob Dylan','City Winery - Atlanta','Atlanta, GA','Monday','7/14/2025','8:00 PM','7090555','Joan-Osborne---The-Songs-of-Bob-Dylan-7-14-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, Turnpike Troubadours & Charles Wesley Godwin','Ameris Bank Amphitheatre','Alpharetta, GA','Friday','7/25/2025','4:10 PM','6968004','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Turnpike-Troubadours---Charles-Wesley-Godwin-7-25-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, Turnpike Troubadours & Charles Wesley Godwin','PNC Music Pavilion - Charlotte','Charlotte, NC','Saturday','7/26/2025','4:00 PM','6968005','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Turnpike-Troubadours---Charles-Wesley-Godwin-7-26-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, Turnpike Troubadours & Charles Wesley Godwin','Coastal Credit Union Music Park at Walnut Creek','Raleigh, NC','Sunday','7/27/2025','3:45 PM','6968006','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Turnpike-Troubadours---Charles-Wesley-Godwin-7-27-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, Turnpike Troubadours & Willow Avalon','Veterans United Home Loans Amphitheater','Virginia Beach, VA','Tuesday','7/29/2025','5:00 PM','6968007','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Turnpike-Troubadours---Willow-Avalon-7-29-2025']],'Bob Dylan','https://www.ticketnetwork.com');