//
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-04A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Old Crow Medicine Show','Capitol Theatre - Port Chester','Port Chester, NY','Saturday','8/1/2026','8:00 PM','7957563','Old-Crow-Medicine-Show-8-1-2026'],['Old Crow Medicine Show','Rebich Investments Amphitheater at Liberty Park','Erie, PA','Wednesday','8/5/2026','7:00 PM','7847321','Old-Crow-Medicine-Show-8-5-2026'],['Old Crow Medicine Show','Historic Academy of Music Theatre','Lynchburg, VA','Thursday','8/6/2026','7:30 PM','7867548','Old-Crow-Medicine-Show-8-6-2026'],['Old Crow Medicine Show','Weldon Mills Theatre','Roanoke Rapids, NC','Friday','8/7/2026','8:30 PM','8074279','Old-Crow-Medicine-Show-8-7-2026'],['Old Crow Medicine Show','Alabama Theatre - SC','Myrtle Beach, SC','Saturday','8/8/2026','7:00 PM','7873508','Old-Crow-Medicine-Show-8-8-2026'],['Buckaroo: Old Crow Medicine Show & Marty Stuart - Friday','The Essentia Health Plaza at the Lights','West Fargo, ND','Friday','8/28/2026','6:00 PM','7735418','Buckaroo--Old-Crow-Medicine-Show---Marty-Stuart---Friday-8-28-2026'],['Bristol Rhythm & Roots Festival: Old Crow Medicine Show & Marty Stuart and His Fabulous Superlatives - Sunday','Bristol Festival Grounds','Bristol, TN','Sunday','9/13/2026','TBD','7970090','Bristol-Rhythm---Roots-Festival--Old-Crow-Medicine-Show---Marty-Stuart-and-His-Fabulous-Superlatives---Sunday-9-13-2026'],['Old Crow Medicine Show','Hackensack Meridian Health Theatre at the Count Basie Center for the Arts','Red Bank, NJ','Tuesday','9/15/2026','7:30 PM','7897772','Old-Crow-Medicine-Show-9-15-2026'],['Old Crow Medicine Show','Patchogue Theater For The Performing Arts','Patchogue, NY','Thursday','9/17/2026','8:00 PM','7902294','Old-Crow-Medicine-Show-9-17-2026'],['Old Crow Medicine Show','Point of the Bluff Vineyards','Hammondsport, NY','Saturday','9/19/2026','3:30 PM','7901941','Old-Crow-Medicine-Show-9-19-2026']],'Old Crow Medicine Show','https://www.ticketnetwork.com');