//
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([['Dave Koz Summer Horns','Blue Note Summer Sessions at Meritage Resort','Napa, CA','Saturday','6/20/2026','8:00 PM','7712312','Dave-Koz-Summer-Horns-6-20-2026'],['Dave Koz','Hyatt Regency - Newport Beach','Newport Beach, CA','Sunday','6/21/2026','7:00 PM','7955161','Dave-Koz-6-21-2026'],['LeAnn Rimes','Peoples Bank Theatre','Marietta, OH','Friday','6/26/2026','8:00 PM','7783309','LeAnn-Rimes-6-26-2026'],['The Human League, Soft Cell & Alison Moyet','Radio City Music Hall','New York, NY','Friday','6/26/2026','8:00 PM','7690556','The-Human-League--Soft-Cell---Alison-Moyet-6-26-2026'],['Morbid - A True Crime Podcast','Radio City Music Hall','New York, NY','Saturday','6/27/2026','8:00 PM','7803441','Morbid---A-True-Crime-Podcast-6-27-2026'],['Hodag Country Festival: Nate Smith, Old Dominion, Brothers Osborne & Russell Dickerson - 4 Day Pass','Hodag Country Festival','Rhinelander, WI','Thursday','7/9/2026','TBD','7535799','Hodag-Country-Festival--Nate-Smith--Old-Dominion--Brothers-Osborne----Russell-Dickerson---4-Day-Pass-7-9-2026'],['Hodag Country Festival: Old Dominion, LeAnn Rimes & Niko Moon - Saturday','Hodag Country Festival','Rhinelander, WI','Saturday','7/11/2026','TBD','7535791','Hodag-Country-Festival--Old-Dominion--LeAnn-Rimes---Niko-Moon---Saturday-7-11-2026'],['Christmas in July Themed Bingo','SoulJoel's at SunnyBrook','Pottstown, PA','Wednesday','7/15/2026','7:00 PM','7869549','Christmas-in-July-Themed-Bingo-7-15-2026'],['Christmas in July with Bad Santa','The Comedy Catch','Chattanooga, TN','Sunday','7/19/2026','7:00 PM','8058726','Christmas-in-July-with-Bad-Santa-7-19-2026'],['Les Miserables - The Arena Concert Spectacular','Radio City Music Hall','New York, NY','Thursday','7/23/2026','7:30 PM','7477701','Les-Miserables---The-Arena-Concert-Spectacular-7-23-2026']],'"Christmas"','https://www.ticketnetwork.com');