//
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-03A
TN_Widget.CreateTable([['Samara Joy','ACL Live At The Moody Theater','Austin, TX','Thursday','4/2/2026','7:30 PM','6879417','Samara-Joy-4-2-2026'],['Go Now! The Music of The Moody Blues','Norwood Theatre','Norwood, MA','Saturday','4/11/2026','7:30 PM','7626688','Go-Now--The-Music-of-The-Moody-Blues-4-11-2026'],['Go Now - Moody Blues Tribute','Aventura Arts & Cultural Center - Aventura','Miami, FL','Wednesday','4/15/2026','8:00 PM','7377191','Go-Now---Moody-Blues-Tribute-4-15-2026'],['Go Now - Moody Blues Tribute','Mainstage Theater At Clermont Performing Arts Center','Clermont, FL','Friday','4/17/2026','7:00 PM','7271689','Go-Now---Moody-Blues-Tribute-4-17-2026'],['Austin Blues Festival: Parliament Funkadelic, George Clinton, Badbadnotgood & Eric Johnson - 2 Day Pass','Moody Amphitheater','Austin, TX','Saturday','4/25/2026','TBD','7602921','Austin-Blues-Festival--Parliament-Funkadelic--George-Clinton--Badbadnotgood---Eric-Johnson---2-Day-Pass-4-25-2026'],['Austin Blues Festival: Jimmie Vaughan, Eric Johnson & Adrian Quesada - Saturday','Moody Amphitheater','Austin, TX','Saturday','4/25/2026','1:00 PM','7704520','Austin-Blues-Festival--Jimmie-Vaughan--Eric-Johnson---Adrian-Quesada---Saturday-4-25-2026'],['Austin Blues Festival: George Clinton, Larkin Poe & The War and Treaty - Sunday','Moody Amphitheater','Austin, TX','Sunday','4/26/2026','1:00 PM','7704437','Austin-Blues-Festival--George-Clinton--Larkin-Poe---The-War-and-Treaty---Sunday-4-26-2026'],['Buddy Guy','ACL Live At The Moody Theater','Austin, TX','Friday','8/28/2026','8:00 PM','7732597','Buddy-Guy-8-28-2026'],['Snarky Puppy','ACL Live At The Moody Theater','Austin, TX','Monday','10/19/2026','8:00 PM','7729230','Snarky-Puppy-10-19-2026']],'Moody Blues','https://www.ticketnetwork.com/ticket/Moody-Blues-events.aspx');