//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['The Black Crowes, Whiskey Myers & Southall','The Cynthia Woods Mitchell Pavilion','Spring, TX','Saturday','8/8/2026','6:30 PM','7708970','The-Black-Crowes--Whiskey-Myers---Southall-8-8-2026'],['The Black Crowes, Whiskey Myers & Southall','Outdoor Amphitheater At Ford Idaho Center ','Nampa, ID','Wednesday','8/12/2026','6:30 PM','7708983','The-Black-Crowes--Whiskey-Myers---Southall-8-12-2026'],['The Black Crowes, Whiskey Myers & Southall','Utah First Credit Union Amphitheatre','Salt Lake City, UT','Thursday','8/13/2026','6:30 PM','7708984','The-Black-Crowes--Whiskey-Myers---Southall-8-13-2026'],['Whiskey Myers','PH Live At Planet Hollywood','Las Vegas, NV','Friday','8/14/2026','8:00 PM','7794135','Whiskey-Myers-8-14-2026'],['The Black Crowes, Whiskey Myers & Southall','Mortgage Matchup Center','Phoenix, AZ','Saturday','8/15/2026','6:30 PM','7708985','The-Black-Crowes--Whiskey-Myers---Southall-8-15-2026'],['The Black Crowes, Tedeschi Trucks Band & Whiskey Myers','Hollywood Bowl','Los Angeles, CA','Monday','8/17/2026','6:00 PM','7708853','The-Black-Crowes--Tedeschi-Trucks-Band---Whiskey-Myers-8-17-2026'],['The Black Crowes, Whiskey Myers & Southall','Toyota Amphitheatre','Wheatland, CA','Wednesday','8/19/2026','6:30 PM','7708986','The-Black-Crowes--Whiskey-Myers---Southall-8-19-2026'],['The Black Crowes, Whiskey Myers & Southall','Shoreline Amphitheatre - CA','Mountain View, CA','Thursday','8/20/2026','6:30 PM','7708987','The-Black-Crowes--Whiskey-Myers---Southall-8-20-2026'],['Whiskey Myers','Table Mountain Casino','Friant, CA','Friday','8/21/2026','8:00 PM','7791401','Whiskey-Myers-8-21-2026'],['Whiskey Myers','Grand Sierra Theatre','Reno, NV','Saturday','8/22/2026','8:00 PM','7791593','Whiskey-Myers-8-22-2026']],'Whiskey Myers','https://www.ticketnetwork.com');