//
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-02A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/WidgetStyle9.css');
TN_Widget.CreateTable([['Born of Osiris, The Browning, VCTMS, AXTY & Lost in Separation','The King of Clubs - Columbus','Columbus, OH','Saturday','11/8/2025','6:30 PM','7205214','Born-of-Osiris--The-Browning--VCTMS--AXTY---Lost-in-Separation-11-8-2025'],['Born of Osiris, The Browning, VCTMS, AXTY & Lost in Separation','Bottom Lounge','Chicago, IL','Sunday','11/9/2025','6:30 PM','7203389','Born-of-Osiris--The-Browning--VCTMS--AXTY---Lost-in-Separation-11-9-2025'],['Arise Roots','Ophelia's Electric Soapbox','Denver, CO','Thursday','11/13/2025','9:00 PM','7389694','Arise-Roots-11-13-2025'],['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']],'arise','http://www.ticketnetwork.com/ticket/arise-events.aspx');