//
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([['Wax Tailor','The Foundry - Philadelphia','Philadelphia, PA','Friday','3/14/2025','8:00 PM','6716182','Wax-Tailor-3-14-2025'],['Wax Tailor','The Sinclair Music Hall ','Cambridge, MA','Sunday','3/16/2025','7:00 PM','6716184','Wax-Tailor-3-16-2025'],['Wax Tailor','Le Studio TD','Montreal, Canada','Friday','3/21/2025','8:00 PM','6716185','Wax-Tailor-3-21-2025'],['Wax Tailor','Lees Palace','Toronto, Canada','Saturday','3/22/2025','7:00 PM','6714655','Wax-Tailor-3-22-2025'],['Wax Tailor','El Club','Detroit, MI','Thursday','3/27/2025','7:00 PM','6716187','Wax-Tailor-3-27-2025'],['Wax Tailor - DJ Set','Thalia Hall','Chicago, IL','Friday','3/28/2025','8:00 PM','6714714','Wax-Tailor---DJ-Set-3-28-2025'],['Wax Tailor','Fine Line Music Cafe','Minneapolis, MN','Saturday','3/29/2025','9:00 PM','6716188','Wax-Tailor-3-29-2025'],['Wax Tailor','The Pearl - BC','Vancouver, Canada','Wednesday','4/2/2025','8:00 PM','6716189','Wax-Tailor-4-2-2025'],['Wax Tailor','The Crocodile','Seattle, WA','Thursday','4/3/2025','7:00 PM','6714716','Wax-Tailor-4-3-2025'],['Wax Tailor','Wonder Ballroom','Portland, OR','Friday','4/4/2025','8:00 PM','6714717','Wax-Tailor-4-4-2025'],['Wax Tailor','The Great American Music Hall','San Francisco, CA','Saturday','4/5/2025','8:00 PM','6716190','Wax-Tailor-4-5-2025'],['Wax Tailor','Music Box - San Diego','San Diego, CA','Thursday','4/10/2025','8:00 PM','6714718','Wax-Tailor-4-10-2025'],['Wax Tailor','The Crescent Ballroom - Phoenix','Phoenix, AZ','Friday','4/11/2025','7:30 PM','6714720','Wax-Tailor-4-11-2025'],['Wax Tailor','Bluebird Theater','Denver, CO','Saturday','4/12/2025','8:00 PM','6716192','Wax-Tailor-4-12-2025']],'Wax','https://www.ticketnetwork.com/ticket/Wax-events.aspx');