//
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([['Harry Potter and the Prisoner of Azkaban In Concert','SAFE Credit Union Performing Arts Center','Sacramento, CA','Friday','10/17/2025','7:30 PM','7029005','Harry-Potter-and-the-Prisoner-of-Azkaban-In-Concert-10-17-2025'],['Harry Potter and the Prisoner of Azkaban In Concert','SAFE Credit Union Performing Arts Center','Sacramento, CA','Saturday','10/18/2025','1:30 PM','7055970','Harry-Potter-and-the-Prisoner-of-Azkaban-In-Concert-10-18-2025'],['Aziz Ansari','SAFE Credit Union Performing Arts Center','Sacramento, CA','Friday','10/24/2025','7:00 PM','7382169','Aziz-Ansari-10-24-2025'],['Distant Worlds: The Music From Final Fantasy','SAFE Credit Union Performing Arts Center','Sacramento, CA','Friday','10/31/2025','8:00 PM','7149074','Distant-Worlds--The-Music-From-Final-Fantasy-10-31-2025'],['Distant Worlds: The Music From Final Fantasy','SAFE Credit Union Performing Arts Center','Sacramento, CA','Saturday','11/1/2025','8:00 PM','7036034','Distant-Worlds--The-Music-From-Final-Fantasy-11-1-2025'],['Golden Girls: The Laughs Continue','SAFE Credit Union Performing Arts Center','Sacramento, CA','Friday','11/7/2025','7:00 PM','7194756','Golden-Girls--The-Laughs-Continue-11-7-2025'],['Max Amini','SAFE Credit Union Performing Arts Center','Sacramento, CA','Saturday','11/8/2025','8:00 PM','7170083','Max-Amini-11-8-2025'],['David Sedaris','SAFE Credit Union Performing Arts Center','Sacramento, CA','Sunday','11/9/2025','2:00 PM','7204569','David-Sedaris-11-9-2025'],['Herb Alpert & The Tijuana Brass','SAFE Credit Union Performing Arts Center','Sacramento, CA','Thursday','11/13/2025','7:30 PM','7153145','Herb-Alpert---The-Tijuana-Brass-11-13-2025'],['Sacramento Gay Men's Chorus','SAFE Credit Union Performing Arts Center','Sacramento, CA','Saturday','11/29/2025','3:00 PM','7230367','Sacramento-Gay-Men-s-Chorus-11-29-2025']],'SAFE Credit Union Performing Arts Center Sacramento','http://www.ticketnetwork.com/en/search/?text=SAFE%20Credit%20Union%20Performing%20Arts%20Center%20Sacramento');