//
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([['Phish','Madison Square Garden','New York, NY','Tuesday','12/30/2025','7:30 PM','7415819','Phish-12-30-2025'],['Phish','Madison Square Garden','New York, NY','Wednesday','12/31/2025','7:30 PM','7415820','Phish-12-31-2025'],['Pink Talking Fish & Steely Dead','Park West','Chicago, IL','Wednesday','12/31/2025','8:00 PM','7283818','Pink-Talking-Fish---Steely-Dead-12-31-2025'],['Pink Talking Fish & Steely Dead','The Bluestone','Columbus, OH','Friday','1/2/2026','6:30 PM','7283819','Pink-Talking-Fish---Steely-Dead-1-2-2026'],['Pink Talking Fish & Steely Dead','Thunderbird Cafe','Pittsburgh, PA','Saturday','1/3/2026','8:00 PM','7640354','Pink-Talking-Fish---Steely-Dead-1-3-2026'],['Pink Talking Fish & Steely Dead','Buffalo Iron Works','Buffalo, NY','Sunday','1/4/2026','7:00 PM','7288620','Pink-Talking-Fish---Steely-Dead-1-4-2026'],['Reprise - Recreating Iconic Phish Shows','Ophelia's Electric Soapbox','Denver, CO','Friday','1/16/2026','9:00 PM','7363418','Reprise---Recreating-Iconic-Phish-Shows-1-16-2026'],['Reprise - Recreating Iconic Phish Shows','Ophelia's Electric Soapbox','Denver, CO','Saturday','1/17/2026','9:00 PM','7357679','Reprise---Recreating-Iconic-Phish-Shows-1-17-2026'],['Reprise - A Phish Experience','3S Artspace','Portsmouth, NH','Thursday','1/22/2026','8:00 PM','7386244','Reprise---A-Phish-Experience-1-22-2026'],['Reprise - A Phish Experience','Brighton Music Hall - MA','Allston, MA','Friday','1/23/2026','7:00 PM','7545740','Reprise---A-Phish-Experience-1-23-2026']],'Phish','http://www.ticketnetwork.com/en/search/?text=Phish');