//
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-04A
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([['The Brothers Doobie','Merryman Performing Arts Center','Kearney, NE','Thursday','1/22/2026','7:00 PM','7658554','The-Brothers-Doobie-1-22-2026'],['Listen To The Music - A Tribute to The Doobie Brothers','Boca Black Box Center for the Arts','Boca Raton, FL','Thursday','1/22/2026','8:00 PM','7649215','Listen-To-The-Music---A-Tribute-to-The-Doobie-Brothers-1-22-2026'],['The Brothers Doobie','Fox Theatre - Hutchinson','Hutchinson, KS','Friday','1/23/2026','7:30 PM','7524048','The-Brothers-Doobie-1-23-2026'],['Doobie Doubles - A Tribute to the Doobie Brothers','The Showroom at Casino Arizona','Scottsdale, AZ','Friday','1/23/2026','7:30 PM','7537330','Doobie-Doubles---A-Tribute-to-the-Doobie-Brothers-1-23-2026'],['Doobie Doubles - A Tribute to the Doobie Brothers','The Showroom at Casino Arizona','Scottsdale, AZ','Saturday','1/24/2026','7:30 PM','7537331','Doobie-Doubles---A-Tribute-to-the-Doobie-Brothers-1-24-2026'],['The Brothers Doobie','Blue Ocean Music Hall','Salisbury, MA','Saturday','1/31/2026','8:00 PM','7477741','The-Brothers-Doobie-1-31-2026'],['The Brothers Doobie','Clark Center For The Performing Arts','Arroyo Grande, CA','Thursday','3/12/2026','7:30 PM','7369810','The-Brothers-Doobie-3-12-2026'],['Brotherhood - A Doobie Brothers Tribute Band','Abbeville Opera House','Abbeville, SC','Saturday','3/21/2026','7:30 PM','7504918','Brotherhood---A-Doobie-Brothers-Tribute-Band-3-21-2026'],['Doobie Doubles - A Tribute to the Doobie Brothers','Coach House - Capistrano','San Juan Capistrano, CA','Friday','4/3/2026','8:00 PM','7621162','Doobie-Doubles---A-Tribute-to-the-Doobie-Brothers-4-3-2026'],['Listen To The Music - A Tribute to The Doobie Brothers','Palace Theatre - PA','Greensburg, PA','Thursday','4/9/2026','7:30 PM','7298021','Listen-To-The-Music---A-Tribute-to-The-Doobie-Brothers-4-9-2026'],['Ultimate Doobie Brothers Tribute Concert','The Historic Bal Theatre','San Leandro, CA','Saturday','5/2/2026','8:00 PM','7682722','Ultimate-Doobie-Brothers-Tribute-Concert-5-2-2026'],['Doobie Doubles - A Tribute to the Doobie Brothers','Old Town Temecula Community Theater','Temecula, CA','Friday','6/12/2026','8:00 PM','7657546','Doobie-Doubles---A-Tribute-to-the-Doobie-Brothers-6-12-2026']],'The Doobie Brothers','http://www.ticketnetwork.com/en/search/?text=The%20Doobie%20Brothers');