//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Halifax Music Fest: The Chicks, Shaboozey, Blue Rodeo & The Barr Brothers','Garrison Grounds','Halifax, Canada','Friday','6/26/2026','4:00 PM','7817780','Halifax-Music-Fest--The-Chicks--Shaboozey--Blue-Rodeo---The-Barr-Brothers-6-26-2026'],['Country Thunder Wisconson: Keith Urban, Shaboozey & Corey Kent - Sunday','Country Thunder At Shadow Hill Ranch','Twin Lakes, WI','Sunday','7/19/2026','12:00 PM','7741533','Country-Thunder-Wisconson--Keith-Urban--Shaboozey---Corey-Kent---Sunday-7-19-2026'],['Boots and Hearts West: Shaboozey','Fan Park at Ice District','Edmonton, Canada','Saturday','8/29/2026','2:30 PM','7610678','Boots-and-Hearts-West--Shaboozey-8-29-2026'],['JAS Labor Day Experience: The Red Clay Strays, Tim McGraw, Benson Boone & Bonnie Raitt - 3 Day Pass','Jazz Aspen Snowmass','Aspen, CO','Friday','9/4/2026','TBD','7545763','JAS-Labor-Day-Experience--The-Red-Clay-Strays--Tim-McGraw--Benson-Boone---Bonnie-Raitt---3-Day-Pass-9-4-2026'],['JAS Labor Day Experience: Tim McGraw, Shaboozy & Avery Anna - Saturday','Jazz Aspen Snowmass','Aspen, CO','Saturday','9/5/2026','1:00 PM','7545765','JAS-Labor-Day-Experience--Tim-McGraw--Shaboozy---Avery-Anna---Saturday-9-5-2026'],['Shaboozey','Arizona Financial Theatre','Phoenix, AZ','Tuesday','9/8/2026','8:00 PM','7916287','Shaboozey-9-8-2026'],['Shaboozey','Moody Amphitheater','Austin, TX','Friday','9/11/2026','8:00 PM','7916291','Shaboozey-9-11-2026'],['Shaboozey','South Side Ballroom at Gilley's','Dallas, TX','Saturday','9/12/2026','8:00 PM','7916294','Shaboozey-9-12-2026'],['Shaboozey','The Criterion - Oklahoma City','Oklahoma City, OK','Tuesday','9/15/2026','8:00 PM','7916296','Shaboozey-9-15-2026'],['Shaboozey','The Factory - Chesterfield','St. Louis, MO','Wednesday','9/16/2026','8:00 PM','7916301','Shaboozey-9-16-2026']],'Shaboozey','https://www.ticketnetwork.com');