//
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([['Movements','South Side Ballroom at Gilley's','Dallas, TX','Wednesday','3/5/2025','8:00 PM','6819789','Movements-3-5-2025'],['GloRilla','South Side Ballroom at Gilley's','Dallas, TX','Thursday','3/6/2025','8:00 PM','6962487','GloRilla-3-6-2025'],['Half Alive','South Side Ballroom at Gilley's','Dallas, TX','Tuesday','4/1/2025','7:00 PM','6829405','Half-Alive-4-1-2025'],['Spiritbox','South Side Ballroom at Gilley's','Dallas, TX','Thursday','4/3/2025','6:30 PM','6861108','Spiritbox-4-3-2025'],['Chiodos','South Side Ballroom at Gilley's','Dallas, TX','Monday','4/7/2025','6:00 PM','6808415','Chiodos-4-7-2025'],['FLO','South Side Ballroom at Gilley's','Dallas, TX','Friday','4/11/2025','8:00 PM','6837898','FLO-4-11-2025'],['Bullet For My Valentine & Trivium','South Side Ballroom at Gilley's','Dallas, TX','Tuesday','4/15/2025','6:30 PM','6713615','Bullet-For-My-Valentine---Trivium-4-15-2025'],['Meshuggah, Cannibal Corpse & Carcass','South Side Ballroom at Gilley's','Dallas, TX','Wednesday','4/16/2025','7:00 PM','6860991','Meshuggah--Cannibal-Corpse---Carcass-4-16-2025'],['Lane 8','South Side Ballroom at Gilley's','Dallas, TX','Saturday','4/19/2025','8:00 PM','6775358','Lane-8-4-19-2025'],['Japanese Breakfast','South Side Ballroom at Gilley's','Dallas, TX','Thursday','4/24/2025','8:00 PM','6915453','Japanese-Breakfast-4-24-2025'],['Jack White','South Side Ballroom at Gilley's','Dallas, TX','Tuesday','5/6/2025','8:00 PM','6827346','Jack-White-5-6-2025'],['Central Cee','South Side Ballroom at Gilley's','Dallas, TX','Monday','5/12/2025','8:00 PM','6958992','Central-Cee-5-12-2025'],['Empire of the Sun','South Side Ballroom at Gilley's','Dallas, TX','Thursday','5/15/2025','8:00 PM','6871949','Empire-of-the-Sun-5-15-2025'],['Dance Gavin Dance','South Side Ballroom at Gilley's','Dallas, TX','Saturday','6/14/2025','7:00 PM','6930338','Dance-Gavin-Dance-6-14-2025'],['Peach Pit & Briston Maroney','South Side Ballroom at Gilley's','Dallas, TX','Tuesday','6/17/2025','7:00 PM','6837247','Peach-Pit---Briston-Maroney-6-17-2025']],'The South Side Ballroom','https://www.ticketnetwork.com/ticket/The-South-Side-Ballroom-events.aspx');