//
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 Oak Ridge Boys','Haute Spot','Cedar Park, TX','Friday','10/3/2025','6:00 PM','7287144','The-Oak-Ridge-Boys-10-3-2025'],['The Oak Ridge Boys','The Coyote Store - Gail','Gail, TX','Saturday','10/4/2025','7:00 PM','7161813','The-Oak-Ridge-Boys-10-4-2025'],['The Oak Ridge Boys','Thrasher-Horne Center for the Arts','Orange Park, FL','Sunday','10/12/2025','7:30 PM','7232730','The-Oak-Ridge-Boys-10-12-2025'],['The Oak Ridge Boys','Paradise Cove At River Spirit','Tulsa, OK','Thursday','10/30/2025','8:00 PM','7353155','The-Oak-Ridge-Boys-10-30-2025'],['The Oak Ridge Boys','Longhorn Ballroom','Dallas, TX','Friday','10/31/2025','8:00 PM','7353659','The-Oak-Ridge-Boys-10-31-2025'],['The Oak Ridge Boys','The Mansion - MO','Branson, MO','Friday','11/7/2025','8:00 PM','7255359','The-Oak-Ridge-Boys-11-7-2025'],['The Oak Ridge Boys','Showplace Theatre At Riverwind Casino','Norman, OK','Friday','11/28/2025','8:00 PM','7319813','The-Oak-Ridge-Boys-11-28-2025'],['The Oak Ridge Boys','Houston Arena Theatre','Houston, TX','Sunday','11/30/2025','8:00 PM','7285189','The-Oak-Ridge-Boys-11-30-2025'],['The Oak Ridge Boys','Van Wezel Performing Arts Hall','Sarasota, FL','Thursday','12/4/2025','7:00 PM','7276241','The-Oak-Ridge-Boys-12-4-2025'],['The Oak Ridge Boys','Georgia Mountain Fairgrounds','Hiawassee, GA','Friday','12/5/2025','7:00 PM','7458898','The-Oak-Ridge-Boys-12-5-2025']],'Oak Ridge Boys','https://www.ticketnetwork.com');