//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "Tickets",
tixUrl : "https://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[3] +" "+"" +
row[4] + " "+"" +
row[5] + " | "+"" +
row[0] +" | " +
row[1] +" " +
row[2] +" | "+""+ 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-01A
TN_Widget.CreateTable([['Micro Wrestling Federation','Weldon Mills Theatre','Roanoke Rapids, NC','Friday','9/12/2025','7:00 PM','7229473','Micro-Wrestling-Federation-9-12-2025'],['CoComelon Live!','Weldon Mills Theatre','Roanoke Rapids, NC','Saturday','9/20/2025','6:00 PM','6996215','CoComelon-Live--9-20-2025'],['Aaron Lewis and the Stateliners','Weldon Mills Theatre','Roanoke Rapids, NC','Wednesday','10/8/2025','7:00 PM','7169322','Aaron-Lewis-and-the-Stateliners-10-8-2025'],['Josh Turner','Weldon Mills Theatre','Roanoke Rapids, NC','Friday','11/7/2025','TBD','7213455','Josh-Turner-11-7-2025'],['Randy Travis','Weldon Mills Theatre','Roanoke Rapids, NC','Thursday','11/13/2025','7:30 PM','7024525','Randy-Travis-11-13-2025'],['Blippi Live','Weldon Mills Theatre','Roanoke Rapids, NC','Friday','12/12/2025','6:00 PM','7200132','Blippi-Live-12-12-2025'],['Hotel California: A Salute To The Eagles','Weldon Mills Theatre','Roanoke Rapids, NC','Friday','3/13/2026','TBD','7200134','Hotel-California--A-Salute-To-The-Eagles-3-13-2026'],['LeAnn Rimes','Weldon Mills Theatre','Roanoke Rapids, NC','Sunday','3/29/2026','TBD','7071711','LeAnn-Rimes-3-29-2026']],'Roanoke Rapids Theatre','https://www.ticketnetwork.com/ticket/Roanoke-Rapids-Theatre-events.aspx');