//
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([['Life of Pi','Wharton Center - Cobb Great Hall','East Lansing, MI','Saturday','3/15/2025','2:00 PM','6303033','Life-of-Pi-3-15-2025'],['Life of Pi','Wharton Center - Cobb Great Hall','East Lansing, MI','Saturday','3/15/2025','7:30 PM','6303032','Life-of-Pi-3-15-2025'],['Life of Pi','Wharton Center - Cobb Great Hall','East Lansing, MI','Sunday','3/16/2025','1:00 PM','6303034','Life-of-Pi-3-16-2025'],['Life of Pi','Wharton Center - Cobb Great Hall','East Lansing, MI','Sunday','3/16/2025','6:30 PM','6303036','Life-of-Pi-3-16-2025'],['MSU Symphony Band','Wharton Center - Cobb Great Hall','East Lansing, MI','Tuesday','3/18/2025','7:30 PM','6661756','MSU-Symphony-Band-3-18-2025'],['MSU Wind Symphony','Wharton Center - Cobb Great Hall','East Lansing, MI','Thursday','3/20/2025','7:30 PM','6661763','MSU-Wind-Symphony-3-20-2025'],['Symphony Orchestra: Pines of Rome and Honors Concert','Wharton Center - Cobb Great Hall','East Lansing, MI','Friday','3/21/2025','8:00 PM','6661770','Symphony-Orchestra--Pines-of-Rome-and-Honors-Concert-3-21-2025'],['Menopause - The Musical 2','Wharton Center - Cobb Great Hall','East Lansing, MI','Sunday','3/30/2025','3:00 PM','6842911','Menopause---The-Musical-2-3-30-2025'],['Chicago - The Musical','Wharton Center - Cobb Great Hall','East Lansing, MI','Tuesday','4/8/2025','7:30 PM','6303037','Chicago---The-Musical-4-8-2025'],['Chicago - The Musical','Wharton Center - Cobb Great Hall','East Lansing, MI','Wednesday','4/9/2025','7:30 PM','6303038','Chicago---The-Musical-4-9-2025']],'Wharton Center Cobb Great Hall East Lansing','http://www.ticketnetwork.com/en/search/?text=Wharton%20Center%20Cobb%20Great%20Hall%20East%20Lansing');