//
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 dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
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 newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-04A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['Chicago - The Musical','Artis-Naples','Naples, FL','Sunday','2/15/2026','2:00 PM','7452324','Chicago---The-Musical-2-15-2026'],['The Philadelphia Orchestra: Yannick Nezet-Seguin - Brahms, Higdon, & Tchaikovsky','Artis-Naples','Naples, FL','Tuesday','2/17/2026','7:30 PM','7549812','The-Philadelphia-Orchestra--Yannick-Nezet-Seguin---Brahms--Higdon----Tchaikovsky-2-17-2026'],['The Philadelphia Orchestra: Yannick Nezet-Seguin - Brahms, Higdon, & Tchaikovsky','Artis-Naples','Naples, FL','Wednesday','2/18/2026','7:30 PM','7549813','The-Philadelphia-Orchestra--Yannick-Nezet-Seguin---Brahms--Higdon----Tchaikovsky-2-18-2026'],['Samara Joy','Artis-Naples','Naples, FL','Thursday','2/19/2026','7:30 PM','7364209','Samara-Joy-2-19-2026'],['Miami City Ballet','Artis-Naples','Naples, FL','Tuesday','2/24/2026','7:30 PM','7549814','Miami-City-Ballet-2-24-2026'],['Paul Reiser','Artis-Naples','Naples, FL','Thursday','2/26/2026','7:30 PM','7521446','Paul-Reiser-2-26-2026'],['Naples Philharmonic Masterworks: Ludovic Morlot - Dvorak & Copeland','Artis-Naples','Naples, FL','Friday','2/27/2026','7:30 PM','7549815','Naples-Philharmonic-Masterworks--Ludovic-Morlot---Dvorak---Copeland-2-27-2026'],['Naples Philharmonic Masterworks: Ludovic Morlot - Dvorak & Copeland','Artis-Naples','Naples, FL','Saturday','2/28/2026','7:30 PM','7549816','Naples-Philharmonic-Masterworks--Ludovic-Morlot---Dvorak---Copeland-2-28-2026'],['Il Divo','Artis-Naples','Naples, FL','Sunday','3/1/2026','7:00 PM','7657367','Il-Divo-3-1-2026'],['Limon Dance Company','Artis-Naples','Naples, FL','Tuesday','3/3/2026','7:30 PM','7549817','Limon-Dance-Company-3-3-2026']],'Artis-Naples Naples','http://www.ticketnetwork.com/en/search/?text=Artis-Naples%20Naples');