//
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([['Duel Reality','Sidney Harman Hall','Washington, DC','Saturday','7/5/2025','2:00 PM','7052336','Duel-Reality-7-5-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Saturday','7/5/2025','7:30 PM','7052337','Duel-Reality-7-5-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Sunday','7/6/2025','2:00 PM','7052374','Duel-Reality-7-6-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Sunday','7/6/2025','7:30 PM','7052375','Duel-Reality-7-6-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Tuesday','7/8/2025','7:30 PM','7052376','Duel-Reality-7-8-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Wednesday','7/9/2025','7:30 PM','7052377','Duel-Reality-7-9-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Thursday','7/10/2025','7:30 PM','7052378','Duel-Reality-7-10-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Friday','7/11/2025','7:30 PM','7052401','Duel-Reality-7-11-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Saturday','7/12/2025','2:00 PM','7052402','Duel-Reality-7-12-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Saturday','7/12/2025','7:30 PM','7052403','Duel-Reality-7-12-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Tuesday','7/15/2025','7:30 PM','7052430','Duel-Reality-7-15-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Wednesday','7/16/2025','1:00 PM','7052431','Duel-Reality-7-16-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Wednesday','7/16/2025','7:30 PM','7052449','Duel-Reality-7-16-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Thursday','7/17/2025','7:30 PM','7052450','Duel-Reality-7-17-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Friday','7/18/2025','7:30 PM','7052451','Duel-Reality-7-18-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Saturday','7/19/2025','2:00 PM','7052512','Duel-Reality-7-19-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Saturday','7/19/2025','7:30 PM','7052513','Duel-Reality-7-19-2025'],['Duel Reality','Sidney Harman Hall','Washington, DC','Sunday','7/20/2025','2:00 PM','7052514','Duel-Reality-7-20-2025']],'Sidney Harman Hall','https://www.ticketnetwork.com/ticket/Sidney-Harman-Hall-events.aspx');