//
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([['Daniel Tosh','Stranahan Theater','Toledo, OH','Friday','4/3/2026','7:00 PM','7569940','Daniel-Tosh-4-3-2026'],['The Great Gatsby - Theatrical Production','Stranahan Theater','Toledo, OH','Tuesday','4/7/2026','7:30 PM','7021886','The-Great-Gatsby---Theatrical-Production-4-7-2026'],['The Great Gatsby - Theatrical Production','Stranahan Theater','Toledo, OH','Wednesday','4/8/2026','7:30 PM','7021887','The-Great-Gatsby---Theatrical-Production-4-8-2026'],['The Great Gatsby - Theatrical Production','Stranahan Theater','Toledo, OH','Thursday','4/9/2026','7:30 PM','7021888','The-Great-Gatsby---Theatrical-Production-4-9-2026'],['The Great Gatsby - Theatrical Production','Stranahan Theater','Toledo, OH','Friday','4/10/2026','7:30 PM','7021889','The-Great-Gatsby---Theatrical-Production-4-10-2026'],['The Great Gatsby - Theatrical Production','Stranahan Theater','Toledo, OH','Saturday','4/11/2026','2:00 PM','7021891','The-Great-Gatsby---Theatrical-Production-4-11-2026'],['The Great Gatsby - Theatrical Production','Stranahan Theater','Toledo, OH','Saturday','4/11/2026','7:30 PM','7021890','The-Great-Gatsby---Theatrical-Production-4-11-2026'],['The Great Gatsby - Theatrical Production','Stranahan Theater','Toledo, OH','Sunday','4/12/2026','1:00 PM','7021892','The-Great-Gatsby---Theatrical-Production-4-12-2026'],['The Great Gatsby - Theatrical Production','Stranahan Theater','Toledo, OH','Sunday','4/12/2026','6:30 PM','7021893','The-Great-Gatsby---Theatrical-Production-4-12-2026'],['Alice Cooper','Stranahan Theater','Toledo, OH','Tuesday','4/21/2026','7:30 PM','7705731','Alice-Cooper-4-21-2026']],'Stranahan Theater Toledo','http://www.ticketnetwork.com/en/search/?text=Stranahan%20Theater%20Toledo');