//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['The Bellamy Brothers','11th Street Cowboy Bar','Bandera, TX','Saturday','7/5/2025','8:00 PM','7182848','The-Bellamy-Brothers-7-5-2025'],['Old Washington Music Fest: Sammy Kershaw, The Bellamy Brothers, & Silver Stallion - Tribute to The Highwaymen - Thursday','Guernsey County Fairgrounds','Lore City, OH','Thursday','7/17/2025','12:00 PM','6876553','Old-Washington-Music-Fest--Sammy-Kershaw--The-Bellamy-Brothers----Silver-Stallion---Tribute-to-The-Highwaymen---Thursday-7-17-2025'],['The Bellamy Brothers','Pines Theater - TX','Lufkin, TX','Friday','7/25/2025','7:00 PM','6861407','The-Bellamy-Brothers-7-25-2025'],['The Bellamy Brothers','Camp Margaritaville RV Resort Crystal Beach','Port Bolivar, TX','Saturday','7/26/2025','7:30 PM','7043208','The-Bellamy-Brothers-7-26-2025'],['The Bellamy Brothers','I Bar Ranch','Gunnison, CO','Wednesday','7/30/2025','6:30 PM','7064303','The-Bellamy-Brothers-7-30-2025'],['Oregon Jamboree - Clay Walker, Sawyer Brown, Bellamy Brothers - Friday','Oregon Jamboree','Sweet Home, OR','Friday','8/1/2025','1:00 PM','6738614','Oregon-Jamboree---Clay-Walker--Sawyer-Brown--Bellamy-Brothers---Friday-8-1-2025'],['The Bellamy Brothers','MT Cattle Lack Ranch','Arlee, MT','Saturday','8/2/2025','2:00 PM','7064319','The-Bellamy-Brothers-8-2-2025'],['The Bellamy Brothers','House Pasture Cattle Co','Concan, TX','Saturday','8/9/2025','6:00 PM','7064306','The-Bellamy-Brothers-8-9-2025'],['The Bellamy Brothers','Arlington Music Hall','Arlington, TX','Friday','8/15/2025','8:00 PM','6710760','The-Bellamy-Brothers-8-15-2025'],['The Bellamy Brothers','Paramount Theatre - Abilene','Abilene, TX','Saturday','8/16/2025','7:30 PM','7188199','The-Bellamy-Brothers-8-16-2025']],'The Bellamy Brothers','https://www.ticketnetwork.com');