//
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([['Janeane Garofalo','Punch Line Comedy Club - Sacramento','Sacramento, CA','Wednesday','1/21/2026','7:00 PM','7531678','Janeane-Garofalo-1-21-2026'],['Janeane Garofalo','Punch Line Comedy Club - Sacramento','Sacramento, CA','Thursday','1/22/2026','7:00 PM','7531635','Janeane-Garofalo-1-22-2026'],['Janeane Garofalo','The Lobero Theatre','Santa Barbara, CA','Friday','1/23/2026','7:30 PM','7485330','Janeane-Garofalo-1-23-2026'],['Janeane Garofalo','House Of Blues - Anaheim','Anaheim, CA','Saturday','1/24/2026','7:00 PM','7485551','Janeane-Garofalo-1-24-2026'],['Janeane Garofalo','The Vogel at the Count Basie Center for the Arts','Red Bank, NJ','Friday','4/24/2026','7:30 PM','7550133','Janeane-Garofalo-4-24-2026'],['Janeane Garofalo','Wiseguys Comedy Cafe - Downtown Salt Lake City','Salt Lake City, UT','Thursday','5/7/2026','7:00 PM','7601149','Janeane-Garofalo-5-7-2026'],['Janeane Garofalo','Wiseguys Comedy Cafe - Downtown Salt Lake City','Salt Lake City, UT','Friday','5/8/2026','7:30 PM','7601150','Janeane-Garofalo-5-8-2026'],['Janeane Garofalo','Wiseguys Comedy Cafe - Downtown Salt Lake City','Salt Lake City, UT','Saturday','5/9/2026','6:30 PM','7601151','Janeane-Garofalo-5-9-2026'],['Janeane Garofalo','Wiseguys Comedy Cafe - Downtown Salt Lake City','Salt Lake City, UT','Saturday','5/9/2026','9:00 PM','7601152','Janeane-Garofalo-5-9-2026']],'janeane garofalo','http://www.ticketnetwork.com/en/search/?text=janeane%20garofalo');