//
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([['MotorCity Night of Knockouts XXXVIII','Sound Board at MotorCity Casino Hotel','Detroit, MI','Sunday','12/28/2025','7:00 PM','7518928','MotorCity-Night-of-Knockouts-XXXVIII-12-28-2025'],['Disco Night Tribute Mania','Sound Waves at Hard Rock Hotel & Casino - Atlantic City','Atlantic City, NJ','Saturday','1/10/2026','8:00 PM','7363200','Disco-Night-Tribute-Mania-1-10-2026'],['Emo Night','Cargo Concert Hall At Whitney Peak Hotel','Reno, NV','Saturday','1/24/2026','8:00 PM','7615746','Emo-Night-1-24-2026'],['North Carolina Jazz Festival - Thursday Night','Hotel Ballast Wilmington By Hilton','Wilmington, NC','Thursday','2/5/2026','7:30 PM','7619200','North-Carolina-Jazz-Festival---Thursday-Night-2-5-2026'],['North Carolina Jazz Festival - Friday Night','Hotel Ballast Wilmington By Hilton','Wilmington, NC','Friday','2/6/2026','7:30 PM','6982923','North-Carolina-Jazz-Festival---Friday-Night-2-6-2026'],['North Carolina Jazz Festival - Saturday Night','Hotel Ballast Wilmington By Hilton','Wilmington, NC','Saturday','2/7/2026','7:30 PM','6982924','North-Carolina-Jazz-Festival---Saturday-Night-2-7-2026'],['Coco & Friends Comedy Night','Amnesia at MotorCity Casino Hotel','Detroit, MI','Thursday','2/26/2026','8:00 PM','7628897','Coco---Friends-Comedy-Night-2-26-2026'],['Three Dog Night','Jackpot Junction Casino Hotel','Morton, MN','Friday','2/27/2026','8:00 PM','7609189','Three-Dog-Night-2-27-2026'],['Night Ranger','Jackpot Junction Casino Hotel','Morton, MN','Friday','3/13/2026','8:00 PM','7624554','Night-Ranger-3-13-2026'],['NPC Night of Champions','Sheraton San Diego Hotel & Marina','San Diego, CA','Saturday','5/2/2026','TBD','7627726','NPC-Night-of-Champions-5-2-2026']],'The Night Hotel','http://www.ticketnetwork.com/ticket/The-Night-Hotel-events.aspx');