//
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([['Igloofest Montreal: Igloopass - All Sessions Pass','Jacques-cartier Pier In The Old Port Of Montreal','Montreal, Canada','Thursday','1/15/2026','TBD','7599541','Igloofest-Montreal--Igloopass---All-Sessions-Pass-1-15-2026'],['Boston Celtic Music Festival - Multi-Day Pass','Crystal Ballroom at Somerville Theatre','Somerville, MA','Thursday','1/15/2026','TBD','7671882','Boston-Celtic-Music-Festival---Multi-Day-Pass-1-15-2026'],['Fair Grounds Live Racing','New Orleans Fair Grounds','New Orleans, LA','Thursday','1/15/2026','12:45 PM','7549010','Fair-Grounds-Live-Racing-1-15-2026'],['Zoppe Family Circus','Mercado Festival Grounds at MSA Annex','Tucson, AZ','Thursday','1/15/2026','6:00 PM','7557924','Zoppe-Family-Circus-1-15-2026'],['Redsfest - 2 Day Pass','Duke Energy Convention Center','Cincinnati, OH','Friday','1/16/2026','TBD','7552587','Redsfest---2-Day-Pass-1-16-2026'],['Deadwood Red Dirt Festival - 2 Day Pass','Deadwood Mountain Grand Hotel & Casino','Deadwood, SD','Friday','1/16/2026','TBD','7363521','Deadwood-Red-Dirt-Festival---2-Day-Pass-1-16-2026'],['Arizona Balloon Classic','Festival Grounds At Wild Horse Pass','Chandler, AZ','Friday','1/16/2026','12:00 PM','7621646','Arizona-Balloon-Classic-1-16-2026'],['Fair Grounds Live Racing','New Orleans Fair Grounds','New Orleans, LA','Friday','1/16/2026','12:45 PM','7549031','Fair-Grounds-Live-Racing-1-16-2026'],['Redsfest - Friday','Duke Energy Convention Center','Cincinnati, OH','Friday','1/16/2026','3:00 PM','7552585','Redsfest---Friday-1-16-2026'],['Deadwood Red Dirt Festival: Chancey Williams, Walker Montgomery, & Cody Cozz','Deadwood Mountain Grand Hotel & Casino','Deadwood, SD','Friday','1/16/2026','6:00 PM','7363523','Deadwood-Red-Dirt-Festival--Chancey-Williams--Walker-Montgomery----Cody-Cozz-1-16-2026']],'Festival','https://www.ticketnetwork.com');