//
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([['Lee Brice & Neal McCoy','Black Oak Amphitheater','Lampe, MO','Friday','5/16/2025','7:00 PM','7024436','Lee-Brice---Neal-McCoy-5-16-2025'],['Chris Janson, Neal McCoy & David Lee Murphy','Surprise Stadium','Surprise, AZ','Saturday','5/17/2025','5:00 PM','7066582','Chris-Janson--Neal-McCoy---David-Lee-Murphy-5-17-2025'],['Opry Country Classics: The Gatlin Brothers, Jim Lauderdale & Neal McCoy','Grand Ole Opry House','Nashville, TN','Thursday','5/29/2025','7:00 PM','6762499','Opry-Country-Classics--The-Gatlin-Brothers--Jim-Lauderdale---Neal-McCoy-5-29-2025'],['Neal McCoy','Tower Event & Conference Center','Marietta, OH','Friday','5/30/2025','7:30 PM','7066584','Neal-McCoy-5-30-2025'],['Neal McCoy','Southern Junction Live - Royse City','Royse City, TX','Friday','6/6/2025','10:00 PM','7066587','Neal-McCoy-6-6-2025'],['Neal McCoy','Captain's Entertainment Complex','Arnolds Park, IA','Thursday','6/12/2025','8:30 PM','7123912','Neal-McCoy-6-12-2025'],['Roundup Independence Days Extravaganza: Chancey Williams & Neal McCoy - Friday','Community Stage At Roundup City Park','Roundup, MT','Friday','7/4/2025','7:00 PM','7067967','Roundup-Independence-Days-Extravaganza--Chancey-Williams---Neal-McCoy---Friday-7-4-2025'],['Hodag Country Festival: Mitchell Tenpenny & Neal McCoy (Time: TBD)','Hodag Country Festival','Rhinelander, WI','Thursday','7/10/2025','12:00 PM','6892456','Hodag-Country-Festival--Mitchell-Tenpenny---Neal-McCoy--Time--TBD--7-10-2025'],['Country Concert At Hickory Hill Lakes: Blake Shleton, Jon Pardi & Neal McCoy - Saturday (Time: TBD)','Country Concert At Hickory Hill Lakes','Fort Loramie, OH','Saturday','7/12/2025','12:00 PM','6755338','Country-Concert-At-Hickory-Hill-Lakes--Blake-Shleton--Jon-Pardi---Neal-McCoy---Saturday--Time--TBD--7-12-2025'],['Neal McCoy','Southern Kentucky Performing Arts Center','Bowling Green, KY','Thursday','7/17/2025','7:30 PM','7013177','Neal-McCoy-7-17-2025']],'"Neal Mccoy"','https://www.ticketnetwork.com');