//
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-04A
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([['Spokane Symphony: James Lowe - Masterworks 8: Verdi Requiem','Martin Woldson Theatre At The Fox','Spokane, WA','Saturday','4/25/2026','7:30 PM','7352140','Spokane-Symphony--James-Lowe---Masterworks-8--Verdi-Requiem-4-25-2026'],['Spokane Symphony: James Lowe - Masterworks 8: Verdi Requiem','Martin Woldson Theatre At The Fox','Spokane, WA','Sunday','4/26/2026','3:00 PM','7352128','Spokane-Symphony--James-Lowe---Masterworks-8--Verdi-Requiem-4-26-2026'],['Spokane Symphony: Morihiko Nakahara - Batman 1989 In Concert With Film','Martin Woldson Theatre At The Fox','Spokane, WA','Saturday','5/2/2026','7:30 PM','7283705','Spokane-Symphony--Morihiko-Nakahara---Batman-1989-In-Concert-With-Film-5-2-2026'],['Spokane Symphony: James Lowe - Masterworks 9: To America','Martin Woldson Theatre At The Fox','Spokane, WA','Saturday','5/9/2026','7:30 PM','7352141','Spokane-Symphony--James-Lowe---Masterworks-9--To-America-5-9-2026'],['Spokane Symphony: James Lowe - Masterworks 9: To America','Martin Woldson Theatre At The Fox','Spokane, WA','Sunday','5/10/2026','3:00 PM','7352144','Spokane-Symphony--James-Lowe---Masterworks-9--To-America-5-10-2026'],['Spokane Symphony: Morihiko Nakahara - The Music of Studio Ghibli','Martin Woldson Theatre At The Fox','Spokane, WA','Friday','5/15/2026','7:30 PM','7283704','Spokane-Symphony--Morihiko-Nakahara---The-Music-of-Studio-Ghibli-5-15-2026'],['Spokane Youth Symphony: Together We Reach for the Stars','Martin Woldson Theatre At The Fox','Spokane, WA','Sunday','5/17/2026','4:00 PM','7565196','Spokane-Youth-Symphony--Together-We-Reach-for-the-Stars-5-17-2026'],['Black Jacket Symphony: Bon Jovi's Slippery When Wet','Martin Woldson Theatre At The Fox','Spokane, WA','Saturday','10/31/2026','7:30 PM','7878446','Black-Jacket-Symphony--Bon-Jovi-s-Slippery-When-Wet-10-31-2026']],'spokane symphony','http://www.ticketnetwork.com/en/search/?text=spokane%20symphony');