//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "Tickets",
tixUrl : "https://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
" +
row[3] +" "+"" +
row[4] + " "+"" +
row[5] + " | "+"" +
row[0] +" | " +
row[1] +" " +
row[2] +" | "+""+ this.linkText+ " |
";
},
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,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-01A
TN_Widget.CreateTable([['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'],['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']],'Doobie Brothers','https://www.ticketnetwork.com/ticket/Doobie-Brothers-events.aspx');