//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Old Crow Medicine Show','Boulder Theater','Boulder, CO','Sunday','5/17/2026','7:30 PM','7718260','Old-Crow-Medicine-Show-5-17-2026'],['Old Crow Medicine Show & Marty Stuart and His Fabulous Superlatives','Koka Booth Amphitheatre At Regency Park','Cary, NC','Thursday','5/28/2026','7:00 PM','7720293','Old-Crow-Medicine-Show---Marty-Stuart-and-His-Fabulous-Superlatives-5-28-2026'],['Old Crow Medicine Show & Marty Stuart and His Fabulous Superlatives','Maymont Park','Richmond, VA','Friday','5/29/2026','6:00 PM','7718428','Old-Crow-Medicine-Show---Marty-Stuart-and-His-Fabulous-Superlatives-5-29-2026'],['Old Crow Medicine Show','Bloomington Center For The Performing Arts','Bloomington, IL','Friday','6/26/2026','7:00 PM','7843981','Old-Crow-Medicine-Show-6-26-2026'],['Old Crow Medicine Show','Paramount Theatre - Cedar Rapids','Cedar Rapids, IA','Saturday','6/27/2026','7:30 PM','7851446','Old-Crow-Medicine-Show-6-27-2026'],['Old Crow Medicine Show','Louisville Palace','Louisville, KY','Sunday','6/28/2026','8:00 PM','7845781','Old-Crow-Medicine-Show-6-28-2026'],['Old Crow Medicine Show','The Gallivan Center','Salt Lake City, UT','Monday','7/13/2026','6:00 PM','7863120','Old-Crow-Medicine-Show-7-13-2026'],['Old Crow Medicine Show','Pikes Peak Center','Colorado Springs, CO','Tuesday','7/14/2026','8:00 PM','7847386','Old-Crow-Medicine-Show-7-14-2026'],['Old Crow Medicine Show','Ford Wyoming Center','Casper, WY','Wednesday','7/15/2026','7:00 PM','7847333','Old-Crow-Medicine-Show-7-15-2026'],['Old Crow Medicine Show','Old Saloon','Emigrant, MT','Saturday','7/18/2026','6:00 PM','7735486','Old-Crow-Medicine-Show-7-18-2026']],'"Old Crow Medicine Show"','https://www.ticketnetwork.com');