//
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([['Naples Philharmonic: Alexander Shelley - Pictures with Alexander','Artis-Naples','Naples, FL','Friday','11/1/2024','7:30 PM','6722331','Naples-Philharmonic--Alexander-Shelley---Pictures-with-Alexander-11-1-2024'],['Naples Philharmonic: Alexander Shelley - Pictures with Alexander','Artis-Naples','Naples, FL','Saturday','11/2/2024','7:30 PM','6722332','Naples-Philharmonic--Alexander-Shelley---Pictures-with-Alexander-11-2-2024'],['Mariachi Herencia De Mexico','Artis-Naples','Naples, FL','Sunday','11/3/2024','7:00 PM','6581002','Mariachi-Herencia-De-Mexico-11-3-2024'],['Naples Philharmonic Pops: Jack Everly - Celebrating Gershwin','Artis-Naples','Naples, FL','Tuesday','11/5/2024','7:30 PM','6722322','Naples-Philharmonic-Pops--Jack-Everly---Celebrating-Gershwin-11-5-2024'],['Naples Philharmonic Pops: Jack Everly - Celebrating Gershwin','Artis-Naples','Naples, FL','Wednesday','11/6/2024','7:30 PM','6722323','Naples-Philharmonic-Pops--Jack-Everly---Celebrating-Gershwin-11-6-2024'],['Naples Philharmonic Pops: Jack Everly - Celebrating Gershwin','Artis-Naples','Naples, FL','Thursday','11/7/2024','7:30 PM','6722324','Naples-Philharmonic-Pops--Jack-Everly---Celebrating-Gershwin-11-7-2024'],['Naples Philharmonic Pops: Jack Everly - Celebrating Gershwin','Artis-Naples','Naples, FL','Friday','11/8/2024','7:30 PM','6722325','Naples-Philharmonic-Pops--Jack-Everly---Celebrating-Gershwin-11-8-2024'],['Naples Philharmonic Pops: Jack Everly - Celebrating Gershwin','Artis-Naples','Naples, FL','Saturday','11/9/2024','2:00 PM','6722326','Naples-Philharmonic-Pops--Jack-Everly---Celebrating-Gershwin-11-9-2024'],['Naples Philharmonic Pops: Jack Everly - Celebrating Gershwin','Artis-Naples','Naples, FL','Saturday','11/9/2024','7:30 PM','6722327','Naples-Philharmonic-Pops--Jack-Everly---Celebrating-Gershwin-11-9-2024'],['Neil Berg's 50 Years of Rock & Roll','Artis-Naples','Naples, FL','Sunday','11/10/2024','7:00 PM','6581005','Neil-Berg-s-50-Years-of-Rock---Roll-11-10-2024']],'Artis-Naples Naples','http://www.ticketnetwork.com/en/search/?text=Artis-Naples%20Naples');