//
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 t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
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 newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['The Bellamy Brothers','2920 Roadhouse Restaurant','Hockley, TX','Friday','9/4/2026','9:00 PM','7696323','The-Bellamy-Brothers-9-4-2026'],['The Bellamy Brothers & The Isaacs','Williams County Fair','Montpelier, OH','Sunday','9/13/2026','7:00 PM','7598102','The-Bellamy-Brothers---The-Isaacs-9-13-2026'],['The Bellamy Brothers','The Post OG','Orange Grove, TX','Saturday','9/19/2026','8:00 PM','7929948','The-Bellamy-Brothers-9-19-2026'],['The Bellamy Brothers','Medina Entertainment Center','Hamel, MN','Friday','9/25/2026','8:00 PM','7882965','The-Bellamy-Brothers-9-25-2026'],['The Bellamy Brothers','Wichita Union Stockyards','Wichita, KS','Saturday','9/26/2026','7:00 PM','7620846','The-Bellamy-Brothers-9-26-2026'],['The Bellamy Brothers','Weldon Mills Theatre','Roanoke Rapids, NC','Thursday','10/1/2026','8:00 PM','7919635','The-Bellamy-Brothers-10-1-2026'],['The Bellamy Brothers','Andy Griffith Playhouse','Mount Airy, NC','Friday','10/2/2026','8:00 PM','7598030','The-Bellamy-Brothers-10-2-2026'],['The Bellamy Brothers','The Reidsville Showcase Theater - NC','Reidsville, NC','Saturday','10/3/2026','7:00 PM','7598050','The-Bellamy-Brothers-10-3-2026'],['The Bellamy Brothers','Charleston Civic Center Little Theater','Charleston, WV','Thursday','10/8/2026','7:00 PM','7832997','The-Bellamy-Brothers-10-8-2026'],['The Bellamy Brothers & Exile','Anderson Music Hall','Hiawassee, GA','Friday','10/9/2026','7:00 PM','7598170','The-Bellamy-Brothers---Exile-10-9-2026']],'The Bellamy Brothers','https://www.ticketnetwork.com');