//
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([['Outlaw Music Festival: Willie Nelson, Bob Dylan, Billy Strings & Sierra Hull','Talking Stick Resort Amphitheatre','Phoenix, AZ','Tuesday','5/13/2025','5:00 PM','6967987','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Billy-Strings---Sierra-Hull-5-13-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, Billy Strings & Sierra Hull','North Island Credit Union Amphitheatre','Chula Vista, CA','Thursday','5/15/2025','4:00 PM','6967988','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Billy-Strings---Sierra-Hull-5-15-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, Billy Strings & Sierra Hull','Hollywood Bowl','Los Angeles, CA','Friday','5/16/2025','5:00 PM','6967989','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Billy-Strings---Sierra-Hull-5-16-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, Billy Strings & Sierra Hull','Toyota Amphitheatre','Wheatland, CA','Sunday','5/18/2025','4:00 PM','6967990','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Billy-Strings---Sierra-Hull-5-18-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, Billy Strings & Sierra Hull','Outdoor Amphitheater At Ford Idaho Center ','Nampa, ID','Tuesday','5/20/2025','4:00 PM','6967991','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Billy-Strings---Sierra-Hull-5-20-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, Billy Strings & Sierra Hull','ONE Spokane Stadium','Spokane, WA','Thursday','5/22/2025','5:00 PM','6967992','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Billy-Strings---Sierra-Hull-5-22-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, Billy Strings & Lake Street Dive','Cascades Amphitheater - WA','Ridgefield, WA','Saturday','5/24/2025','2:40 PM','6967993','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Billy-Strings---Lake-Street-Dive-5-24-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, Billy Strings & Lake Street Dive','Gorge Amphitheatre','Quincy, WA','Sunday','5/25/2025','2:40 PM','6967994','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Billy-Strings---Lake-Street-Dive-5-25-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, Nathaniel Rateliff and The Night Sweats & Trampled By Turtles','Pine Knob Music Theatre','Clarkston, MI','Friday','6/20/2025','4:00 PM','6967995','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Nathaniel-Rateliff-and-The-Night-Sweats---Trampled-By-Turtles-6-20-2025'],['Outlaw Music Festival: Willie Nelson, Bob Dylan, Nathaniel Rateliff and The Night Sweats & Bruce Hornsby','Blossom Music Center','Cuyahoga Falls, OH','Saturday','6/21/2025','5:00 PM','6967996','Outlaw-Music-Festival--Willie-Nelson--Bob-Dylan--Nathaniel-Rateliff-and-The-Night-Sweats---Bruce-Hornsby-6-21-2025']],'Outlaw Music Festival','https://www.ticketnetwork.com');