//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "view
tickets",
tixUrl : "http://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[0] +" | " +
row[1] +" " +
row[2] +" | " +
row[3] +" " +
row[4] + " " +
row[5] + " | "+ 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-02A
TN_Widget.CreateTable([['The Bacon Brothers','Belly Up Tavern','Solana Beach, CA','Friday','6/26/2026','9:30 PM','7691340','The-Bacon-Brothers-6-26-2026'],['The Bacon Brothers','Mary Stuart Rogers Theater at Gallo Center For The Arts','Modesto, CA','Saturday','6/27/2026','7:30 PM','7786525','The-Bacon-Brothers-6-27-2026'],['The Bacon Brothers','Bottle & Cork','Dewey Beach, DE','Friday','7/17/2026','8:00 PM','7742292','The-Bacon-Brothers-7-17-2026'],['The Bacon Brothers','Shenandoah Valley Music Festival','Woodstock, VA','Saturday','8/8/2026','7:00 PM','7154462','The-Bacon-Brothers-8-8-2026'],['The Bacon Brothers','Vilar Performing Arts Center','Avon, CO','Monday','8/17/2026','7:00 PM','7848107','The-Bacon-Brothers-8-17-2026'],['The Bacon Brothers','SoulJoel's at SunnyBrook','Pottstown, PA','Thursday','8/20/2026','7:00 PM','7869490','The-Bacon-Brothers-8-20-2026'],['The Bacon Brothers','Crystal Grand Music Theatre','Lake Delton, WI','Friday','9/11/2026','8:00 PM','7667570','The-Bacon-Brothers-9-11-2026'],['The Bacon Brothers','The Rhythm Section Amphitheater','Mount Carroll, IL','Saturday','9/12/2026','7:00 PM','7698619','The-Bacon-Brothers-9-12-2026'],['The Bacon Brothers','Blue Gate Performing Arts Center','Shipshewana, IN','Friday','9/18/2026','7:30 PM','7741329','The-Bacon-Brothers-9-18-2026'],['The Bacon Brothers','Louisville Palace','Louisville, KY','Sunday','9/20/2026','8:00 PM','7875981','The-Bacon-Brothers-9-20-2026'],['The Bacon Brothers','Historic Academy of Music Theatre','Lynchburg, VA','Friday','10/9/2026','7:30 PM','7216569','The-Bacon-Brothers-10-9-2026']],'The Bacon Brothers','http://www.ticketnetwork.com/ticket/The-Bacon-Brothers-events.aspx');