//
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([['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','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','Tennessee Theatre','Knoxville, TN','Friday','3/20/2026','8:00 PM','7617952','Old-Crow-Medicine-Show-3-20-2026'],['Old Crow Medicine Show','Greenfield Lake Amphitheater','Wilmington, NC','Tuesday','3/31/2026','6:00 PM','7620828','Old-Crow-Medicine-Show-3-31-2026'],['Old Crow Medicine Show','Performance Hall At Gaillard Center','Charleston, SC','Wednesday','4/1/2026','7:30 PM','7621203','Old-Crow-Medicine-Show-4-1-2026'],['Merlefest: Charles Wesley Godwin, Old Crow Medicine Show, Blackberry Smoke & Alison Krauss and Union Station - 4 Day Pass','Merlefest Festival Grounds','Wilkesboro, NC','Thursday','4/23/2026','TBD','7554983','Merlefest--Charles-Wesley-Godwin--Old-Crow-Medicine-Show--Blackberry-Smoke---Alison-Krauss-and-Union-Station---4-Day-Pass-4-23-2026'],['Merlefest: Old Crow Medicine Show, Molly Tuttle & Steep Canyon Rangers - Friday','Merlefest Festival Grounds','Wilkesboro, NC','Friday','4/24/2026','9:30 AM','7554841','Merlefest--Old-Crow-Medicine-Show--Molly-Tuttle---Steep-Canyon-Rangers---Friday-4-24-2026'],['Merlefest: Old Crow Medicine Show, Blackberry Smoke & Sam Bush - Saturday','Merlefest Festival Grounds','Wilkesboro, NC','Saturday','4/25/2026','9:30 AM','7554842','Merlefest--Old-Crow-Medicine-Show--Blackberry-Smoke---Sam-Bush---Saturday-4-25-2026']],'"Old Crow Medicine Show"','https://www.ticketnetwork.com');