//
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-02A
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([['Grand Rapids Symphony: Marcelo Lehninger - Mahler's Sixth Symphony','Devos Hall','Grand Rapids, MI','Friday','3/6/2026','7:30 PM','7302207','Grand-Rapids-Symphony--Marcelo-Lehninger---Mahler-s-Sixth-Symphony-3-6-2026'],['Grand Rapids Symphony: Marcelo Lehninger - Mahler's Sixth Symphony','Devos Hall','Grand Rapids, MI','Saturday','3/7/2026','7:30 PM','7302208','Grand-Rapids-Symphony--Marcelo-Lehninger---Mahler-s-Sixth-Symphony-3-7-2026'],['Dancing with the Stars Live','Devos Hall','Grand Rapids, MI','Sunday','3/8/2026','7:00 PM','7477442','Dancing-with-the-Stars-Live-3-8-2026'],['& Juliet','Devos Hall','Grand Rapids, MI','Tuesday','3/10/2026','7:30 PM','7009849','--Juliet-3-10-2026'],['& Juliet','Devos Hall','Grand Rapids, MI','Wednesday','3/11/2026','7:30 PM','7009850','--Juliet-3-11-2026'],['& Juliet','Devos Hall','Grand Rapids, MI','Thursday','3/12/2026','7:30 PM','7009851','--Juliet-3-12-2026'],['& Juliet','Devos Hall','Grand Rapids, MI','Friday','3/13/2026','7:30 PM','7009852','--Juliet-3-13-2026'],['& Juliet','Devos Hall','Grand Rapids, MI','Saturday','3/14/2026','2:00 PM','7009854','--Juliet-3-14-2026'],['& Juliet','Devos Hall','Grand Rapids, MI','Saturday','3/14/2026','7:30 PM','7009853','--Juliet-3-14-2026'],['& Juliet','Devos Hall','Grand Rapids, MI','Sunday','3/15/2026','1:00 PM','7009855','--Juliet-3-15-2026']],'Devos Hall Grand Rapids','http://www.ticketnetwork.com/en/search/?text=Devos%20Hall%20Grand%20Rapids');