//
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-04A
TN_Widget.CreateTable([['Bob Schneider','ACL Live At The Moody Theater','Austin, TX','Friday','2/14/2025','8:00 PM','6915237','Bob-Schneider-2-14-2025'],['Trombone Shorty And Orleans Avenue & Tank and The Bangas','ACL Live At The Moody Theater','Austin, TX','Thursday','3/20/2025','8:00 PM','6754710','Trombone-Shorty-And-Orleans-Avenue---Tank-and-The-Bangas-3-20-2025'],['The Moody Blues - John Lodge','Savannah Center - FL','The Villages, FL','Sunday','3/23/2025','4:00 PM','6902827','The-Moody-Blues---John-Lodge-3-23-2025'],['The Moody Blues - John Lodge','Savannah Center - FL','The Villages, FL','Sunday','3/23/2025','7:00 PM','6902828','The-Moody-Blues---John-Lodge-3-23-2025'],['Austin Blues Festival: Christone Kingfish Ingram, Antone's 50th Anniversary Allstar Jam & Mavis Staples - 2 Day Pass','Moody Amphitheater','Austin, TX','Saturday','4/26/2025','TBD','6923262','Austin-Blues-Festival--Christone-Kingfish-Ingram--Antone-s-50th-Anniversary-Allstar-Jam---Mavis-Staples---2-Day-Pass-4-26-2025'],['Austin Blues Festival: Christone Kingfish Ingram, North Mississippi Allstars, Antone's 50th Anniversary Allstar Jam & Sue Foley - Saturday','Moody Amphitheater','Austin, TX','Saturday','4/26/2025','12:00 PM','6923263','Austin-Blues-Festival--Christone-Kingfish-Ingram--North-Mississippi-Allstars--Antone-s-50th-Anniversary-Allstar-Jam---Sue-Foley---Saturday-4-26-2025'],['Austin Blues Festival: Mavis Staples, Jackie Venson & Jalen Ngonda - Sunday','Moody Amphitheater','Austin, TX','Sunday','4/27/2025','12:00 PM','6923265','Austin-Blues-Festival--Mavis-Staples--Jackie-Venson---Jalen-Ngonda---Sunday-4-27-2025'],['Tedeschi Trucks Band & Buddy Guy','Moody Amphitheater','Austin, TX','Thursday','5/8/2025','7:00 PM','6946823','Tedeschi-Trucks-Band---Buddy-Guy-5-8-2025'],['Tedeschi Trucks Band & Buddy Guy','Moody Amphitheater','Austin, TX','Friday','5/9/2025','7:00 PM','6946824','Tedeschi-Trucks-Band---Buddy-Guy-5-9-2025'],['Samara Joy','ACL Live At The Moody Theater','Austin, TX','Thursday','5/29/2025','7:30 PM','6879417','Samara-Joy-5-29-2025']],'Moody Blues','https://www.ticketnetwork.com/ticket/Moody-Blues-events.aspx');