//
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-01A
TN_Widget.CreateTable([['GloRilla and Friends','FedExForum','Memphis, TN','Friday','7/25/2025','8:00 PM','7125017','GloRilla-and-Friends-7-25-2025'],['Creed','FedExForum','Memphis, TN','Sunday','7/27/2025','7:00 PM','6874501','Creed-7-27-2025'],['Shinedown, Bush & Morgan Wade','FedExForum','Memphis, TN','Saturday','8/30/2025','7:00 PM','6944645','Shinedown--Bush---Morgan-Wade-8-30-2025'],['The Queens: 4 Legends, 1 Stage - Gladys Knight, Patti LaBelle, Chaka Khan & Stephanie Mills','FedExForum','Memphis, TN','Sunday','9/21/2025','7:00 PM','7071585','The-Queens--4-Legends--1-Stage---Gladys-Knight--Patti-LaBelle--Chaka-Khan---Stephanie-Mills-9-21-2025'],['Lil Wayne','FedExForum','Memphis, TN','Sunday','9/28/2025','8:00 PM','7081439','Lil-Wayne-9-28-2025'],['Uncle Charlie's R&B Cookout: Charlie Wilson, Babyface & K-Ci','FedExForum','Memphis, TN','Sunday','10/12/2025','7:00 PM','7094773','Uncle-Charlie-s-R-B-Cookout--Charlie-Wilson--Babyface---K-Ci-10-12-2025'],['Brandy, Monica, Kelly Rowland & Muni Long','FedExForum','Memphis, TN','Thursday','10/30/2025','8:00 PM','7235591','Brandy--Monica--Kelly-Rowland---Muni-Long-10-30-2025'],['Memphis Tigers vs. UNLV Rebels','FedExForum','Memphis, TN','Sunday','11/16/2025','TBD','7087765','Memphis-Tigers-vs--UNLV-Rebels-11-16-2025'],['Memphis Tigers vs. Baylor Bears','FedExForum','Memphis, TN','Saturday','12/6/2025','3:30 PM','7257797','Memphis-Tigers-vs--Baylor-Bears-12-6-2025'],['Memphis Tigers vs. Vanderbilt Commodores','FedExForum','Memphis, TN','Wednesday','12/17/2025','TBD','7262363','Memphis-Tigers-vs--Vanderbilt-Commodores-12-17-2025'],['PBR - Unleash The Beast','FedExForum','Memphis, TN','Saturday','2/28/2026','6:45 PM','7039512','PBR---Unleash-The-Beast-2-28-2026'],['PBR - Unleash The Beast','FedExForum','Memphis, TN','Sunday','3/1/2026','6:45 PM','7039513','PBR---Unleash-The-Beast-3-1-2026']],'FedExForum','http://www.ticketnetwork.com/ticket/FedExForum-events.aspx');