//
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([['Breaking Sound LA','The Peppermint Club','Los Angeles, CA','Wednesday','2/12/2025','7:00 PM','6919028','Breaking-Sound-LA-2-12-2025'],['Breaking Sound','The Peppermint Club','Los Angeles, CA','Wednesday','2/19/2025','8:00 PM','6895220','Breaking-Sound-2-19-2025'],['Fiji Blue','Fortune Sound Club','Vancouver, Canada','Friday','2/21/2025','6:30 PM','6612391','Fiji-Blue-2-21-2025'],['Grace Enger','Fortune Sound Club','Vancouver, Canada','Saturday','2/22/2025','6:00 PM','6861207','Grace-Enger-2-22-2025'],['Artikal Sound System','Soho Restaurant And Music Club','Santa Barbara, CA','Sunday','2/23/2025','8:00 PM','6788268','Artikal-Sound-System-2-23-2025'],['Artikal Sound System','The Catalyst','Santa Cruz, CA','Wednesday','2/26/2025','8:00 PM','6788280','Artikal-Sound-System-2-26-2025'],['NOTD','Fortune Sound Club','Vancouver, Canada','Friday','2/28/2025','7:00 PM','6834685','NOTD-2-28-2025'],['Fulton Lee','Fortune Sound Club','Vancouver, Canada','Saturday','3/1/2025','7:30 PM','6614122','Fulton-Lee-3-1-2025'],['Breaking Sound','The Peppermint Club','Los Angeles, CA','Wednesday','3/5/2025','7:00 PM','6957168','Breaking-Sound-3-5-2025'],['Breaking Sound','The Peppermint Club','Los Angeles, CA','Wednesday','3/19/2025','7:00 PM','6929568','Breaking-Sound-3-19-2025'],['Dylan Sinclair','Fortune Sound Club','Vancouver, Canada','Saturday','3/29/2025','7:00 PM','6755630','Dylan-Sinclair-3-29-2025'],['The Strike','Fortune Sound Club','Vancouver, Canada','Wednesday','4/2/2025','7:00 PM','6869908','The-Strike-4-2-2025'],['Breaking Sound','The Peppermint Club','Los Angeles, CA','Wednesday','4/23/2025','7:00 PM','6939705','Breaking-Sound-4-23-2025'],['Alice Longyu Gao','Fortune Sound Club','Vancouver, Canada','Saturday','5/24/2025','7:00 PM','6976251','Alice-Longyu-Gao-5-24-2025']],'Club Sound','https://www.ticketnetwork.com/ticket/Club-Sound-events.aspx');