//
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','Indian River County Fairgrounds','Vero Beach, FL','Saturday','3/14/2026','7:00 PM','7597762','The-Bellamy-Brothers-3-14-2026'],['The Bellamy Brothers','Roanoke Live','Roanoke, TX','Friday','3/20/2026','8:00 PM','7398031','The-Bellamy-Brothers-3-20-2026'],['The Bellamy Brothers','Memorial City Hall Performance Center','Marshall, TX','Saturday','3/21/2026','7:00 PM','7626405','The-Bellamy-Brothers-3-21-2026'],['The Bellamy Brothers','Red River Station BBQ','Saint Jo, TX','Saturday','4/18/2026','8:00 PM','7597708','The-Bellamy-Brothers-4-18-2026'],['The Bellamy Brothers','Harvester Performance Center','Rocky Mount, VA','Thursday','4/23/2026','8:00 PM','7528071','The-Bellamy-Brothers-4-23-2026'],['The Bellamy Brothers','Paramount Center For The Performing Arts','Bristol, TN','Friday','4/24/2026','7:30 PM','7135924','The-Bellamy-Brothers-4-24-2026'],['The Bellamy Brothers','The Big Barn at Dosey Doe','Spring, TX','Friday','5/1/2026','8:30 PM','7419535','The-Bellamy-Brothers-5-1-2026'],['The Bellamy Brothers','Grand Opera House of the South','Crowley, LA','Friday','5/8/2026','7:00 PM','7653483','The-Bellamy-Brothers-5-8-2026'],['The Bellamy Brothers','John T. Floore Country Store','Helotes, TX','Saturday','5/9/2026','8:00 PM','7597687','The-Bellamy-Brothers-5-9-2026'],['The Bellamy Brothers','EA Rawlinson Centre for the Arts','Prince Albert, Canada','Wednesday','5/13/2026','7:30 PM','7597721','The-Bellamy-Brothers-5-13-2026']],'The Bellamy Brothers','https://www.ticketnetwork.com');