//
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-02A
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([['DBX - The Doobie Brothers Experience','Vernon and District Performing Arts Centre','Vernon, Canada','Saturday','11/15/2025','7:30 PM','7452408','DBX---The-Doobie-Brothers-Experience-11-15-2025'],['China Grove - Doobie Brothers Tribute Band','Jergel's Rhythm Grille','Warrendale, PA','Sunday','11/30/2025','8:00 PM','7216925','China-Grove---Doobie-Brothers-Tribute-Band-11-30-2025'],['The Doobie Brothers','The Venue At Thunder Valley Casino','Lincoln, CA','Friday','12/5/2025','8:00 PM','7295878','The-Doobie-Brothers-12-5-2025'],['The Brothers Doobie','The Milton Theatre','Milton, DE','Sunday','12/28/2025','7:30 PM','7254600','The-Brothers-Doobie-12-28-2025'],['The Brothers Doobie','Fox Theatre - Hutchinson','Hutchinson, KS','Friday','1/23/2026','7:30 PM','7524048','The-Brothers-Doobie-1-23-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'],['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']],'The Doobie Brothers','http://www.ticketnetwork.com/en/search/?text=The%20Doobie%20Brothers');