//
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([['Tim McGraw, The Chicks, Lady A & 49 Winchester','Fenway Park','Boston, MA','Thursday','7/30/2026','4:00 PM','7717500','Tim-McGraw--The-Chicks--Lady-A---49-Winchester-7-30-2026'],['The Chicks','Hard Rock Live At Etess Arena','Atlantic City, NJ','Friday','7/31/2026','8:00 PM','7863297','The-Chicks-7-31-2026'],['The Chicks','Illinois State Fairgrounds - Grandstand','Springfield, IL','Saturday','8/22/2026','7:00 PM','7828521','The-Chicks-8-22-2026'],['Tim McGraw, The Chicks, Lady A & 49 Winchester','Target Field','Minneapolis, MN','Sunday','8/23/2026','4:30 PM','7717511','Tim-McGraw--The-Chicks--Lady-A---49-Winchester-8-23-2026'],['Etta May & The Southern Fried Chicks','Paramount Theatre - Anderson','Anderson, IN','Friday','9/25/2026','7:30 PM','7860717','Etta-May---The-Southern-Fried-Chicks-9-25-2026'],['Etta May & Southern Fried Chicks','Ford Theater At Honeywell Center','Wabash, IN','Saturday','9/26/2026','7:30 PM','7846540','Etta-May---Southern-Fried-Chicks-9-26-2026'],['The Chicks','Fox Theatre - Detroit','Detroit, MI','Wednesday','9/30/2026','8:30 PM','7999833','The-Chicks-9-30-2026'],['The Chicks','Auditorium Theatre - IL','Chicago, IL','Saturday','10/3/2026','8:30 PM','7999834','The-Chicks-10-3-2026'],['The Chicks','Auditorium Theatre - IL','Chicago, IL','Sunday','10/4/2026','8:30 PM','7999753','The-Chicks-10-4-2026'],['The Chicks','The Anthem - D.C.','Washington, DC','Tuesday','10/6/2026','7:30 PM','7999754','The-Chicks-10-6-2026']],'The Chicks','https://www.ticketnetwork.com');