//
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([['Whiskey Myers','Arnolds Park Amusement Park','Arnolds Park, IA','Thursday','7/2/2026','7:30 PM','7797421','Whiskey-Myers-7-2-2026'],['Whiskey Myers','Back Waters Stage at Q Casino and Hotel','Dubuque, IA','Saturday','7/4/2026','6:30 PM','7841583','Whiskey-Myers-7-4-2026'],['The Black Crowes, Whiskey Myers & Southall','Ruoff Music Center','Noblesville, IN','Friday','7/17/2026','6:30 PM','7708957','The-Black-Crowes--Whiskey-Myers---Southall-7-17-2026'],['The Black Crowes, Whiskey Myers & Southall','Pine Knob Music Theatre','Clarkston, MI','Saturday','7/18/2026','6:30 PM','7708958','The-Black-Crowes--Whiskey-Myers---Southall-7-18-2026'],['The Black Crowes, Whiskey Myers & Southall','Acrisure Amphitheater','Grand Rapids, MI','Wednesday','7/22/2026','6:30 PM','7708904','The-Black-Crowes--Whiskey-Myers---Southall-7-22-2026'],['The Black Crowes, Whiskey Myers & Southall','Credit Union 1 Amphitheatre','Tinley Park, IL','Friday','7/24/2026','6:30 PM','7708960','The-Black-Crowes--Whiskey-Myers---Southall-7-24-2026'],['The Black Crowes, Whiskey Myers & Southall','Hollywood Casino Amphitheatre - MO','Maryland Heights, MO','Saturday','7/25/2026','6:30 PM','7708961','The-Black-Crowes--Whiskey-Myers---Southall-7-25-2026'],['Whiskey Myers','Wave - KS','Wichita, KS','Sunday','7/26/2026','7:15 PM','7791438','Whiskey-Myers-7-26-2026'],['The Black Crowes, Whiskey Myers & Southall','Mystic Lake Amphitheatre - Shakopee','Shakopee, MN','Tuesday','7/28/2026','6:30 PM','7708962','The-Black-Crowes--Whiskey-Myers---Southall-7-28-2026'],['The Black Crowes, Whiskey Myers & Southall','Morton Amphitheater','Riverside, MO','Thursday','7/30/2026','6:30 PM','7708964','The-Black-Crowes--Whiskey-Myers---Southall-7-30-2026']],'Whiskey Myers','https://www.ticketnetwork.com');