//
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-01A
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([['David Sedaris','Uptown Theatre Napa','Napa, CA','Friday','5/9/2025','8:00 PM','6974878','David-Sedaris-5-9-2025'],['David Sedaris','Uptown Theatre Napa','Napa, CA','Saturday','5/10/2025','8:00 PM','6974927','David-Sedaris-5-10-2025'],['Thievery Corporation','Uptown Theatre Napa','Napa, CA','Friday','5/16/2025','8:00 PM','6891023','Thievery-Corporation-5-16-2025'],['Jeremy Piven','Uptown Theatre Napa','Napa, CA','Saturday','5/17/2025','8:00 PM','6843316','Jeremy-Piven-5-17-2025'],['Chris Isaak','Uptown Theatre Napa','Napa, CA','Wednesday','5/21/2025','7:30 PM','7032960','Chris-Isaak-5-21-2025'],['Allen Stone','Uptown Theatre Napa','Napa, CA','Friday','5/23/2025','8:00 PM','7011519','Allen-Stone-5-23-2025'],['Robby Krieger','Uptown Theatre Napa','Napa, CA','Saturday','5/24/2025','9:00 PM','7010245','Robby-Krieger-5-24-2025'],['Linda Perry','Uptown Theatre Napa','Napa, CA','Sunday','5/25/2025','9:00 PM','7011671','Linda-Perry-5-25-2025'],['Piff the Magic Dragon','Uptown Theatre Napa','Napa, CA','Thursday','5/29/2025','8:00 PM','7055511','Piff-the-Magic-Dragon-5-29-2025'],['George Lopez','Uptown Theatre Napa','Napa, CA','Friday','5/30/2025','8:00 PM','6987918','George-Lopez-5-30-2025'],['Zepparella - All Female Tribute To Led Zeppelin','Uptown Theatre Napa','Napa, CA','Saturday','5/31/2025','8:00 PM','6992583','Zepparella---All-Female-Tribute-To-Led-Zeppelin-5-31-2025']],'uptown theatre napa may','http://www.ticketnetwork.com/en/search/?text=uptown%20theatre%20napa%20may');