//
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([['Old Crow Medicine Show','Baum Walker Hall At Walton Arts Center','Fayetteville, AR','Wednesday','12/3/2025','7:00 PM','7372481','Old-Crow-Medicine-Show-12-3-2025'],['Old Crow Medicine Show','Brown County Music Center','Nashville, IN','Thursday','12/4/2025','7:30 PM','7381081','Old-Crow-Medicine-Show-12-4-2025'],['Old Crow Medicine Show','Taft Theatre','Cincinnati, OH','Friday','12/5/2025','7:30 PM','7381082','Old-Crow-Medicine-Show-12-5-2025'],['Old Crow Medicine Show','Rialto Square Theatre','Joliet, IL','Saturday','12/6/2025','7:30 PM','7381083','Old-Crow-Medicine-Show-12-6-2025'],['Old Crow Medicine Show','Capital One Hall','Tysons Corner, VA','Tuesday','12/16/2025','7:30 PM','7381084','Old-Crow-Medicine-Show-12-16-2025'],['Old Crow Medicine Show','Garde Arts Center','New London, CT','Thursday','12/18/2025','7:30 PM','7381085','Old-Crow-Medicine-Show-12-18-2025'],['Old Crow Medicine Show','Oneglia Auditorium at Warner Theatre - CT','Torrington, CT','Friday','12/19/2025','7:30 PM','7381086','Old-Crow-Medicine-Show-12-19-2025'],['Old Crow Medicine Show','Bergen Performing Arts Center','Englewood, NJ','Saturday','12/20/2025','7:00 PM','7381087','Old-Crow-Medicine-Show-12-20-2025'],['Old Crow Medicine Show','Ryman Auditorium','Nashville, TN','Tuesday','12/30/2025','8:00 PM','7017385','Old-Crow-Medicine-Show-12-30-2025'],['Old Crow Medicine Show','Ryman Auditorium','Nashville, TN','Wednesday','12/31/2025','9:00 PM','7019754','Old-Crow-Medicine-Show-12-31-2025']],'Old Crow Medicine Show','https://www.ticketnetwork.com');