//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "view
tickets",
tixUrl : "http://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
| " +
row[0] +" | " +
row[1] +" " +
row[2] +" | " +
row[3] +" " +
row[4] + " " +
row[5] + " | "+ this.linkText+ " |
";
},
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,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-02A
TN_Widget.CreateTable([['Dancing with the Stars Live','Akron Civic Theatre','Akron, OH','Wednesday','5/13/2026','7:30 PM','7587789','Dancing-with-the-Stars-Live-5-13-2026'],['Devo','Akron Civic Theatre','Akron, OH','Wednesday','6/3/2026','8:00 PM','7729599','Devo-6-3-2026'],['Michael Anthony Forney's - The Family Reunion','Akron Civic Theatre','Akron, OH','Saturday','6/6/2026','6:30 PM','7737773','Michael-Anthony-Forney-s---The-Family-Reunion-6-6-2026'],['Mean Girls High School Edition','Akron Civic Theatre','Akron, OH','Saturday','6/13/2026','2:30 PM','7468175','Mean-Girls-High-School-Edition-6-13-2026'],['Mean Girls High School Edition','Akron Civic Theatre','Akron, OH','Saturday','6/13/2026','7:30 PM','7468137','Mean-Girls-High-School-Edition-6-13-2026'],['Mean Girls High School Edition','Akron Civic Theatre','Akron, OH','Sunday','6/14/2026','2:30 PM','7471982','Mean-Girls-High-School-Edition-6-14-2026'],['Lucy Darling','Akron Civic Theatre','Akron, OH','Friday','6/19/2026','7:30 PM','7876466','Lucy-Darling-6-19-2026'],['Derek Hough','Akron Civic Theatre','Akron, OH','Wednesday','7/15/2026','8:00 PM','7556163','Derek-Hough-7-15-2026'],['The Princess Concert','Akron Civic Theatre','Akron, OH','Sunday','8/9/2026','3:30 PM','7836641','The-Princess-Concert-8-9-2026'],['Ray LaMontagne','Akron Civic Theatre','Akron, OH','Saturday','9/19/2026','7:00 PM','7039543','Ray-LaMontagne-9-19-2026'],['Tracy Lawrence','Akron Civic Theatre','Akron, OH','Thursday','9/24/2026','7:30 PM','7896657','Tracy-Lawrence-9-24-2026'],['Whose Live Anyway?','Akron Civic Theatre','Akron, OH','Thursday','10/1/2026','7:30 PM','7875451','Whose-Live-Anyway--10-1-2026'],['Zach Williams','Akron Civic Theatre','Akron, OH','Thursday','11/19/2026','7:00 PM','7889862','Zach-Williams-11-19-2026']],'Akron Civic Theatre','http://www.ticketnetwork.com/ticket/Akron-Civic-Theatre-events.aspx');