//
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([['Riverfront Revolt: Chevelle, 311, Lit, Sick Puppies & Of Mice and Men - 2 Day Pass','La Crosse Center','La Crosse, WI','Friday','1/23/2026','TBD','7566739','Riverfront-Revolt--Chevelle--311--Lit--Sick-Puppies---Of-Mice-and-Men---2-Day-Pass-1-23-2026'],['Of Mice and Men','Crighton Theatre','Conroe, TX','Friday','2/6/2026','7:30 PM','7501305','Of-Mice-and-Men-2-6-2026'],['Of Mice and Men','Crighton Theatre','Conroe, TX','Saturday','2/7/2026','7:30 PM','7501306','Of-Mice-and-Men-2-7-2026'],['Of Mice and Men','Crighton Theatre','Conroe, TX','Sunday','2/8/2026','2:00 PM','7501307','Of-Mice-and-Men-2-8-2026'],['Of Mice and Men','Crighton Theatre','Conroe, TX','Friday','2/13/2026','7:30 PM','7509254','Of-Mice-and-Men-2-13-2026'],['Of Mice and Men','Crighton Theatre','Conroe, TX','Saturday','2/14/2026','7:30 PM','7509255','Of-Mice-and-Men-2-14-2026'],['Houston Grand Opera: Of Mice and Men','Cullen Theater At Wortham Theater Center','Houston, TX','Friday','3/13/2026','7:00 PM','7399851','Houston-Grand-Opera--Of-Mice-and-Men-3-13-2026'],['Houston Grand Opera: Of Mice and Men','Cullen Theater At Wortham Theater Center','Houston, TX','Sunday','3/15/2026','2:30 PM','7399852','Houston-Grand-Opera--Of-Mice-and-Men-3-15-2026'],['Lyric Opera of Kansas City: Of Mice and Men','Muriel Kauffman Theatre - Kauffman Center for the Performing Arts','Kansas City, MO','Friday','5/1/2026','7:30 PM','7305251','Lyric-Opera-of-Kansas-City--Of-Mice-and-Men-5-1-2026'],['Lyric Opera of Kansas City: Of Mice and Men','Muriel Kauffman Theatre - Kauffman Center for the Performing Arts','Kansas City, MO','Saturday','5/2/2026','7:30 PM','7305252','Lyric-Opera-of-Kansas-City--Of-Mice-and-Men-5-2-2026'],['Lyric Opera of Kansas City: Of Mice and Men','Muriel Kauffman Theatre - Kauffman Center for the Performing Arts','Kansas City, MO','Sunday','5/3/2026','2:00 PM','7305253','Lyric-Opera-of-Kansas-City--Of-Mice-and-Men-5-3-2026']],'Of Mice Men','http://www.ticketnetwork.com/en/search/?text=Of%20Mice%20Men');