//
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-02A
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([['John Pizzarelli','Musical Instrument Museum - Music Theater','Phoenix, AZ','Thursday','9/17/2026','6:30 PM','7950647','John-Pizzarelli-9-17-2026'],['John Pizzarelli','Musical Instrument Museum - Music Theater','Phoenix, AZ','Thursday','9/17/2026','8:30 PM','7950648','John-Pizzarelli-9-17-2026'],['John Pizzarelli','Fox Tucson Theatre','Tucson, AZ','Sunday','9/20/2026','7:00 PM','8028219','John-Pizzarelli-9-20-2026'],['John Pizzarelli','Main Stage At Jay and Linda Grunin Center for the Arts','Toms River, NJ','Friday','10/2/2026','7:00 PM','8127187','John-Pizzarelli-10-2-2026'],['John Pizzarelli & Catherine Russell','Troy Savings Bank Music Hall','Troy, NY','Friday','10/16/2026','8:00 PM','8028592','John-Pizzarelli---Catherine-Russell-10-16-2026'],['John Pizzarelli','SHU Community Theatre','Fairfield, CT','Saturday','10/17/2026','8:00 PM','7947978','John-Pizzarelli-10-17-2026'],['John Pizzarelli','Mayo Performing Arts Center','Morristown, NJ','Saturday','5/8/2027','8:00 PM','8065252','John-Pizzarelli-5-8-2027']],'John Pizzarelli','http://www.ticketnetwork.com/en/search/?text=John Pizzarelli');