//
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 dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
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 newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-01A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['Chris Dave, Meshell Ndegeocello & Eric Gales','Blue Note Jazz Club - New York','New York, NY','Friday','9/18/2026','10:30 PM','8194490','Chris-Dave--Meshell-Ndegeocello---Eric-Gales-9-18-2026'],['Chris Dave, Meshell Ndegeocello & Eric Gales','Blue Note Jazz Club - New York','New York, NY','Saturday','9/19/2026','10:30 PM','8194492','Chris-Dave--Meshell-Ndegeocello---Eric-Gales-9-19-2026'],['Chris Dave, Meshell Ndegeocello & Eric Gales','Blue Note Jazz Club - New York','New York, NY','Sunday','9/20/2026','10:30 PM','8194494','Chris-Dave--Meshell-Ndegeocello---Eric-Gales-9-20-2026'],['GCS - Eric Gales, Dennis Chambers & Billy Sheehan','Beacon Theatre - VA','Hopewell, VA','Thursday','10/29/2026','7:30 PM','8262175','GCS---Eric-Gales--Dennis-Chambers---Billy-Sheehan-10-29-2026'],['Eric Gales, Dennis Chambers & Billy Sheehan','Newton Theatre','Newton, NJ','Thursday','11/5/2026','8:00 PM','8246338','Eric-Gales--Dennis-Chambers---Billy-Sheehan-11-5-2026'],['Eric Gales','Jergel's Rhythm Grille','Warrendale, PA','Friday','11/6/2026','8:00 PM','8209085','Eric-Gales-11-6-2026'],['GCS - Eric Gales, Dennis Chambers & Billy Sheehan','Center for the Arts of Homer - William & Ruth Whiting Theater','Homer, NY','Monday','11/9/2026','8:00 PM','8249240','GCS---Eric-Gales--Dennis-Chambers---Billy-Sheehan-11-9-2026'],['GCS - Eric Gales, Dennis Chambers & Billy Sheehan','The Kent Stage','Kent, OH','Wednesday','11/11/2026','7:35 PM','8222406','GCS---Eric-Gales--Dennis-Chambers---Billy-Sheehan-11-11-2026'],['GCS - Eric Gales, Dennis Chambers & Billy Sheehan','Des Plaines Theatre','Des Plaines, IL','Friday','11/13/2026','8:00 PM','8240669','GCS---Eric-Gales--Dennis-Chambers---Billy-Sheehan-11-13-2026'],['GCS - Eric Gales, Dennis Chambers & Billy Sheehan','Ludlow Garage','Cincinnati, OH','Sunday','11/15/2026','7:30 PM','8227646','GCS---Eric-Gales--Dennis-Chambers---Billy-Sheehan-11-15-2026'],['Tampa Bay Blues Festival: Tab Benoit, St. Paul and The Broken Bones & Eric Gales - Sunday','Vinoy Park','St. Petersburg, FL','Sunday','4/11/2027','1:00 PM','8045683','Tampa-Bay-Blues-Festival--Tab-Benoit--St--Paul-and-The-Broken-Bones---Eric-Gales---Sunday-4-11-2027']],'Eric Gales','http://www.ticketnetwork.com/en/search/?text=Eric%20Gales');