//
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([['Spacehog & Fastball','The Greenwich Odeum','East Greenwich, RI','Saturday','9/19/2026','8:00 PM','8146636','Spacehog---Fastball-9-19-2026'],['Fastball & Spacehog','Crystal Ballroom at Somerville Theatre','Somerville, MA','Wednesday','9/23/2026','8:00 PM','8145885','Fastball---Spacehog-9-23-2026'],['Oceans Calling Festival: Mumford & Sons, Twenty One Pilots, Dave Matthews Band & Matchbox Twenty - 3 Day Pass','Ocean City Inlet','Ocean City, MD','Friday','9/25/2026','TBD','7634285','Oceans-Calling-Festival--Mumford---Sons--Twenty-One-Pilots--Dave-Matthews-Band---Matchbox-Twenty---3-Day-Pass-9-25-2026'],['Oceans Calling Festival: Mumford & Sons, Matchbox Twenty, Caamp & My Morning Jacket - Sunday','Ocean City Inlet','Ocean City, MD','Sunday','9/27/2026','12:00 PM','7775376','Oceans-Calling-Festival--Mumford---Sons--Matchbox-Twenty--Caamp---My-Morning-Jacket---Sunday-9-27-2026'],['Spacehog & Fastball','Jergel's Rhythm Grille','Warrendale, PA','Friday','10/2/2026','8:00 PM','8150461','Spacehog---Fastball-10-2-2026'],['Fastball & The Click Five','The Guild Theatre - Menlo Park','Menlo Park, CA','Saturday','10/17/2026','8:00 PM','8167621','Fastball---The-Click-Five-10-17-2026'],['Songs You Remember: Fastball & Eve 6','Celebrity Theatre - AZ','Phoenix, AZ','Saturday','10/24/2026','7:30 PM','7848195','Songs-You-Remember--Fastball---Eve-6-10-24-2026'],['Fastball','Pappy & Harriet's Pioneertown Palace - Indoor Stage','Pioneertown, CA','Tuesday','10/27/2026','9:00 PM','8208450','Fastball-10-27-2026'],['Fastball','Lewis Family Playhouse','Rancho Cucamonga, CA','Saturday','2/13/2027','8:00 PM','8022937','Fastball-2-13-2027']],'Fastball','http://www.ticketnetwork.com/en/search/?text=Fastball');