//
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([['San Francisco Symphony: Dalia Stasevska - Rachmaninoff - Open Rehearsal','Davies Symphony Hall','San Francisco, CA','Thursday','5/15/2025','10:00 AM','6348604','San-Francisco-Symphony--Dalia-Stasevska---Rachmaninoff---Open-Rehearsal-5-15-2025'],['The Curious Incident of the Dog in the Night-Time','San Francisco Playhouse','San Francisco, CA','Thursday','5/15/2025','7:00 PM','6599472','The-Curious-Incident-of-the-Dog-in-the-Night-Time-5-15-2025'],['Mikailo Kasha','SFJazz Center - Joe Henderson Lab','San Francisco, CA','Thursday','5/15/2025','7:00 PM','6782288','Mikailo-Kasha-5-15-2025'],['Kruk and Kuip','Sydney Goldstein Theater','San Francisco, CA','Thursday','5/15/2025','7:30 PM','6877370','Kruk-and-Kuip-5-15-2025'],['San Francisco Symphony: Dalia Stasevska - Rachmaninoff','Davies Symphony Hall','San Francisco, CA','Thursday','5/15/2025','7:30 PM','6348390','San-Francisco-Symphony--Dalia-Stasevska---Rachmaninoff-5-15-2025'],['Mike Quu','Cobb's Comedy Club','San Francisco, CA','Thursday','5/15/2025','7:30 PM','7028588','Mike-Quu-5-15-2025'],['Victor Wooten and The Wooten Brothers','The Great American Music Hall','San Francisco, CA','Thursday','5/15/2025','8:00 PM','6995415','Victor-Wooten-and-The-Wooten-Brothers-5-15-2025'],['Eddie Ifft','Punch Line Comedy Club - San Francisco','San Francisco, CA','Thursday','5/15/2025','8:00 PM','7002080','Eddie-Ifft-5-15-2025'],['Ziggy Alberts','August Hall','San Francisco, CA','Thursday','5/15/2025','8:00 PM','6968120','Ziggy-Alberts-5-15-2025'],['Mikailo Kasha','SFJazz Center - Joe Henderson Lab','San Francisco, CA','Thursday','5/15/2025','8:30 PM','6782289','Mikailo-Kasha-5-15-2025']],'san francisco, ca thursday','http://www.ticketnetwork.com/en/search/?text=san%20francisco,%20ca%20thursday');