//
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([['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','Metropolitan Theatre - WV','Morgantown, WV','Sunday','9/20/2026','7:00 PM','7902244','Old-Crow-Medicine-Show-9-20-2026'],['Old Crow Medicine Show','Majestic Ventura Theatre','Ventura, CA','Wednesday','9/30/2026','8:00 PM','8085409','Old-Crow-Medicine-Show-9-30-2026'],['Old Crow Medicine Show','Grand Sierra Theatre','Reno, NV','Thursday','10/1/2026','8:00 PM','7957564','Old-Crow-Medicine-Show-10-1-2026'],['Old Crow Medicine Show','Warnors Theater','Fresno, CA','Friday','10/2/2026','7:30 PM','8075886','Old-Crow-Medicine-Show-10-2-2026'],['Old Crow Medicine Show','Oxford Performing Arts Center','Oxford, AL','Tuesday','10/13/2026','7:00 PM','8084794','Old-Crow-Medicine-Show-10-13-2026']],'"Old Crow Medicine Show"','https://www.ticketnetwork.com');