//
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([['Lyle Lovett and his Small Large Band','Capitol Theater At Overture Center for the Arts','Madison, WI','Wednesday','7/15/2026','7:30 PM','7864728','Lyle-Lovett-and-his-Small-Large-Band-7-15-2026'],['The Great Gatsby - Theatrical Production','Overture Hall At Overture Center for the Arts','Madison, WI','Tuesday','7/28/2026','7:30 PM','7183091','The-Great-Gatsby---Theatrical-Production-7-28-2026'],['The Great Gatsby - Theatrical Production','Overture Hall At Overture Center for the Arts','Madison, WI','Wednesday','7/29/2026','7:30 PM','7183092','The-Great-Gatsby---Theatrical-Production-7-29-2026'],['The Great Gatsby - Theatrical Production','Overture Hall At Overture Center for the Arts','Madison, WI','Thursday','7/30/2026','7:30 PM','7183093','The-Great-Gatsby---Theatrical-Production-7-30-2026'],['The Great Gatsby - Theatrical Production','Overture Hall At Overture Center for the Arts','Madison, WI','Friday','7/31/2026','7:30 PM','7183094','The-Great-Gatsby---Theatrical-Production-7-31-2026'],['The Great Gatsby - Theatrical Production','Overture Hall At Overture Center for the Arts','Madison, WI','Saturday','8/1/2026','2:00 PM','7183095','The-Great-Gatsby---Theatrical-Production-8-1-2026'],['The Great Gatsby - Theatrical Production','Overture Hall At Overture Center for the Arts','Madison, WI','Saturday','8/1/2026','7:30 PM','7183096','The-Great-Gatsby---Theatrical-Production-8-1-2026'],['The Great Gatsby - Theatrical Production','Overture Hall At Overture Center for the Arts','Madison, WI','Sunday','8/2/2026','1:00 PM','7183097','The-Great-Gatsby---Theatrical-Production-8-2-2026'],['The Great Gatsby - Theatrical Production','Overture Hall At Overture Center for the Arts','Madison, WI','Sunday','8/2/2026','6:30 PM','7183098','The-Great-Gatsby---Theatrical-Production-8-2-2026'],['Trevor - A New Musical','The Playhouse at Overture Center for the Arts','Madison, WI','Friday','8/14/2026','7:30 PM','7979453','Trevor---A-New-Musical-8-14-2026']],'Overture Center Madison','http://www.ticketnetwork.com/en/search/?text=Overture%20Center%20Madison');