//
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([['Jared Benjamin','DC9 Nightclub','Washington, DC','Thursday','4/23/2026','8:00 PM','7712493','Jared-Benjamin-4-23-2026'],['Liz Cooper','DC9 Nightclub','Washington, DC','Monday','4/27/2026','8:00 PM','7619102','Liz-Cooper-4-27-2026'],['Gatlin - Artist','DC9 Nightclub','Washington, DC','Tuesday','4/28/2026','8:00 PM','7620561','Gatlin---Artist-4-28-2026'],['Foxtide','DC9 Nightclub','Washington, DC','Friday','5/1/2026','7:30 PM','7675626','Foxtide-5-1-2026'],['Essenger - Artist','DC9 Nightclub','Washington, DC','Saturday','5/2/2026','7:30 PM','7708103','Essenger---Artist-5-2-2026'],['Sophia Stel','DC9 Nightclub','Washington, DC','Sunday','5/3/2026','8:00 PM','7717939','Sophia-Stel-5-3-2026'],['Noah Guy','DC9 Nightclub','Washington, DC','Saturday','5/9/2026','7:30 PM','7760113','Noah-Guy-5-9-2026'],['The Scratch','DC9 Nightclub','Washington, DC','Monday','5/11/2026','8:00 PM','7558578','The-Scratch-5-11-2026'],['Glom','DC9 Nightclub','Washington, DC','Saturday','6/6/2026','7:30 PM','7656938','Glom-6-6-2026'],['Alejandro Aranda','DC9 Nightclub','Washington, DC','Friday','6/12/2026','7:30 PM','7832883','Alejandro-Aranda-6-12-2026'],['Widowspeak','DC9 Nightclub','Washington, DC','Friday','6/19/2026','7:30 PM','7815237','Widowspeak-6-19-2026'],['Justine Skye','DC9 Nightclub','Washington, DC','Friday','7/31/2026','7:30 PM','7849787','Justine-Skye-7-31-2026'],['Tyler Ballgame','DC9 Nightclub','Washington, DC','Wednesday','9/16/2026','8:00 PM','7862280','Tyler-Ballgame-9-16-2026']],'DC9 Nightclub','http://www.ticketnetwork.com/ticket/DC9-Nightclub-events.aspx');