//
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([['Zach Top','Appalachian Wireless Arena','Pikeville, KY','Thursday','5/15/2025','7:30 PM','6833968','Zach-Top-5-15-2025'],['Zach Top','Everwise Amphitheater at White River State Park','Indianapolis, IN','Friday','5/16/2025','7:30 PM','6833969','Zach-Top-5-16-2025'],['Froggy 101 Guitars & Stars: Zach Top','Harry and Jeanette Weinberg Theatre At The Scranton Cultural Center - Masonic Temple','Scranton, PA','Tuesday','5/20/2025','7:00 PM','7082400','Froggy-101-Guitars---Stars--Zach-Top-5-20-2025'],['92.5 WBEE Guitars & Stars: Zach Top, Kelsey Hart, Dillon Carmichael & LoCash','West Herr Auditorium Theatre','Rochester, NY','Wednesday','5/21/2025','7:30 PM','7058138','92-5-WBEE-Guitars---Stars--Zach-Top--Kelsey-Hart--Dillon-Carmichael---LoCash-5-21-2025'],['Dierks Bentley, Zach Top & The Band Loula','Moody Center ATX','Austin, TX','Thursday','5/29/2025','7:00 PM','6994484','Dierks-Bentley--Zach-Top---The-Band-Loula-5-29-2025'],['Dierks Bentley, Zach Top & The Band Loula','Dos Equis Pavilion','Dallas, TX','Friday','5/30/2025','7:00 PM','6994485','Dierks-Bentley--Zach-Top---The-Band-Loula-5-30-2025'],['Dierks Bentley, Zach Top & The Band Loula','BOK Center','Tulsa, OK','Saturday','5/31/2025','7:00 PM','6994486','Dierks-Bentley--Zach-Top---The-Band-Loula-5-31-2025'],['Dierks Bentley, Zach Top & The Band Loula','Ameris Bank Amphitheatre','Alpharetta, GA','Thursday','6/5/2025','7:00 PM','6994487','Dierks-Bentley--Zach-Top---The-Band-Loula-6-5-2025'],['Dierks Bentley, Zach Top & The Band Loula','MidFlorida Credit Union Amphitheatre At The Florida State Fairgrounds','Tampa, FL','Friday','6/6/2025','7:00 PM','6994488','Dierks-Bentley--Zach-Top---The-Band-Loula-6-6-2025'],['Dierks Bentley, Zach Top & The Band Loula','iTHINK Financial Amphitheatre','West Palm Beach, FL','Saturday','6/7/2025','7:00 PM','6994489','Dierks-Bentley--Zach-Top---The-Band-Loula-6-7-2025']],'Zach Top','https://www.ticketnetwork.com');