//
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-03A
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([['The Fantasy Footballers Podcast','The Van Buren','Phoenix, AZ','Friday','8/28/2026','8:00 PM','8058139','The-Fantasy-Footballers-Podcast-8-28-2026'],['Doug Loves Movies Podcast','The Loft At City Winery - New York City','New York, NY','Monday','9/7/2026','7:30 PM','8174141','Doug-Loves-Movies-Podcast-9-7-2026'],['The Basement Yard Podcast','Durham Performing Arts Center','Durham, NC','Thursday','9/10/2026','8:00 PM','8034609','The-Basement-Yard-Podcast-9-10-2026'],['The Basement Yard Podcast','Ovens Auditorium','Charlotte, NC','Saturday','9/12/2026','8:00 PM','8034610','The-Basement-Yard-Podcast-9-12-2026'],['Last Podcast on the Left - Side Stories Live','Attucks Theatre','Norfolk, VA','Friday','9/18/2026','8:00 PM','8219633','Last-Podcast-on-the-Left---Side-Stories-Live-9-18-2026'],['Small Town Murder Podcast','Pabst Theater','Milwaukee, WI','Friday','9/18/2026','8:00 PM','7600234','Small-Town-Murder-Podcast-9-18-2026'],['Small Town Murder Podcast','State Theatre - MN','Minneapolis, MN','Saturday','9/19/2026','8:00 PM','7599869','Small-Town-Murder-Podcast-9-19-2026'],['Hollywood Crime Scene Podcast','Helium Comedy Club - Atlanta','Alpharetta, GA','Monday','9/21/2026','7:30 PM','7973921','Hollywood-Crime-Scene-Podcast-9-21-2026'],['The Basement Yard Podcast','State Theatre - MN','Minneapolis, MN','Wednesday','9/23/2026','8:00 PM','8060658','The-Basement-Yard-Podcast-9-23-2026'],['The Basement Yard Podcast','State Theatre - MN','Minneapolis, MN','Thursday','9/24/2026','8:00 PM','8034612','The-Basement-Yard-Podcast-9-24-2026']],'podcast','http://www.ticketnetwork.com/en/search/?text=podcast');