//
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-02A
TN_Widget.CreateTable([['Death From Above 1979','Vogue Theatre - BC','Vancouver, Canada','Saturday','11/16/2024','9:00 PM','6463837','Death-From-Above-1979-11-16-2024'],['Death From Above 1979','The Crocodile','Seattle, WA','Monday','1/20/2025','8:00 PM','6655144','Death-From-Above-1979-1-20-2025'],['Death From Above 1979','Revolution Hall - Portland','Portland, OR','Tuesday','1/21/2025','8:00 PM','6653781','Death-From-Above-1979-1-21-2025'],['Death From Above 1979','The Regency Ballroom','San Francisco, CA','Thursday','1/23/2025','8:00 PM','6655726','Death-From-Above-1979-1-23-2025'],['Death From Above 1979','Belly Up Tavern','Solana Beach, CA','Friday','1/24/2025','9:00 PM','6653782','Death-From-Above-1979-1-24-2025'],['Death From Above 1979','The Novo','Los Angeles, CA','Saturday','1/25/2025','9:00 PM','6655727','Death-From-Above-1979-1-25-2025'],['Death From Above 1979','The Crescent Ballroom - Phoenix','Phoenix, AZ','Sunday','1/26/2025','8:00 PM','6655147','Death-From-Above-1979-1-26-2025'],['Death From Above 1979','Ogden Theatre','Denver, CO','Tuesday','1/28/2025','8:00 PM','6655728','Death-From-Above-1979-1-28-2025'],['Death From Above 1979','Ferris Wheelers Backyard and BBQ','Dallas, TX','Thursday','1/30/2025','7:00 PM','6655729','Death-From-Above-1979-1-30-2025'],['Death From Above 1979','Empire Control Room ','Austin, TX','Friday','1/31/2025','7:00 PM','6655731','Death-From-Above-1979-1-31-2025'],['Death From Above 1979','Paper Tiger','San Antonio, TX','Saturday','2/1/2025','8:00 PM','6655732','Death-From-Above-1979-2-1-2025'],['Death From Above 1979','The Heights','Houston, TX','Sunday','2/2/2025','8:00 PM','6655734','Death-From-Above-1979-2-2-2025']],'Death from Above 1979','https://www.ticketnetwork.com/ticket/Death-from-Above-1979-events.aspx');