//
var TN_Widget = function() {
return {
CreateEventRow : function(row, isAlt) {
return "
" +
row[3] + " " +
row[4] + " " +
row[5] + " | " +
row[0] + " | " +
row[1] + " " +
row[2] + " | Tickets |
";
},
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 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 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-01A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/WidgetStyle9.css');
TN_Widget.CreateTable([['Arise Roots','Last Exit Live','Phoenix, AZ','Sunday','11/16/2025','8:00 PM','7484258','Arise-Roots-11-16-2025'],['Arise: Fall Dance Concert','Kupferberg Center for the Arts - Goldstein Theatre','Flushing, NY','Thursday','12/4/2025','7:00 PM','7532700','Arise--Fall-Dance-Concert-12-4-2025'],['Arise: Fall Dance Concert','Kupferberg Center for the Arts - Goldstein Theatre','Flushing, NY','Friday','12/5/2025','7:00 PM','7532701','Arise--Fall-Dance-Concert-12-5-2025'],['Arise: Fall Dance Concert','Kupferberg Center for the Arts - Goldstein Theatre','Flushing, NY','Saturday','12/6/2025','7:00 PM','7532702','Arise--Fall-Dance-Concert-12-6-2025'],['Arise: Fall Dance Concert','Kupferberg Center for the Arts - Goldstein Theatre','Flushing, NY','Sunday','12/7/2025','3:00 PM','7532703','Arise--Fall-Dance-Concert-12-7-2025'],['The Browning','Warehouse On Broadway','Kansas City, MO','Tuesday','12/9/2025','7:00 PM','7373460','The-Browning-12-9-2025'],['The Browning','Madison Live - Covington','Covington, KY','Thursday','2/12/2026','7:00 PM','7553027','The-Browning-2-12-2026'],['The Browning','The Shelter at Saint Andrews Hall','Detroit, MI','Saturday','2/14/2026','6:00 PM','7552491','The-Browning-2-14-2026'],['The Browning','Wooly's','Des Moines, IA','Wednesday','2/18/2026','6:30 PM','7553789','The-Browning-2-18-2026'],['The Browning','The Waiting Room Lounge - NE','Omaha, NE','Thursday','2/19/2026','6:30 PM','7553511','The-Browning-2-19-2026']],'arise','http://www.ticketnetwork.com/ticket/arise-events.aspx');