//
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([['Jonathan Richman','Buskirk-Chumley Theater','Bloomington, IN','Wednesday','2/26/2025','7:30 PM','6823316','Jonathan-Richman-2-26-2025'],['Jonathan Richman','The Heights Theater - OH','Cleveland, OH','Friday','2/28/2025','8:00 PM','6823325','Jonathan-Richman-2-28-2025'],['Jonathan Richman','The Heights Theater - OH','Cleveland, OH','Saturday','3/1/2025','8:00 PM','6823326','Jonathan-Richman-3-1-2025'],['Jonathan Richman','La Sala Rossa','Montreal, Canada','Tuesday','3/4/2025','8:00 PM','6823338','Jonathan-Richman-3-4-2025'],['Jonathan Richman','La Sala Rossa','Montreal, Canada','Wednesday','3/5/2025','8:00 PM','6823339','Jonathan-Richman-3-5-2025'],['Jonathan Richman','The Waldo Theatre','Waldoboro, ME','Saturday','3/8/2025','8:00 PM','6823344','Jonathan-Richman-3-8-2025'],['Jonathan Richman','3S Artspace','Portsmouth, NH','Sunday','3/9/2025','7:00 PM','6823346','Jonathan-Richman-3-9-2025'],['Jonathan Richman','3S Artspace','Portsmouth, NH','Monday','3/10/2025','7:00 PM','6823347','Jonathan-Richman-3-10-2025'],['Jonathan Richman','Union Transfer','Philadelphia, PA','Wednesday','3/12/2025','8:00 PM','6823349','Jonathan-Richman-3-12-2025'],['Jonathan Richman','Ottobar','Baltimore, MD','Thursday','3/13/2025','7:00 PM','6823351','Jonathan-Richman-3-13-2025'],['Jonathan Richman','Ottobar','Baltimore, MD','Friday','3/14/2025','8:00 PM','6823352','Jonathan-Richman-3-14-2025'],['Jonathan Richman','Ottobar','Baltimore, MD','Saturday','3/15/2025','8:00 PM','6823353','Jonathan-Richman-3-15-2025'],['Jonathan Richman','Rubber Gloves Rehearsal Studios','Denton, TX','Wednesday','3/19/2025','8:00 PM','6823357','Jonathan-Richman-3-19-2025'],['Jonathan Richman','South Broadway Center','Albuquerque, NM','Tuesday','3/25/2025','7:30 PM','6823361','Jonathan-Richman-3-25-2025']],'Jonathan Richman','http://www.ticketnetwork.com/en/search/?text=Jonathan Richman');