//
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([['Baths','Club Congress','Tucson, AZ','Friday','3/7/2025','7:00 PM','6930071','Baths-3-7-2025'],['Mind's Eye & Cathedral Bells','Club Congress','Tucson, AZ','Sunday','3/9/2025','7:00 PM','6891009','Mind-s-Eye---Cathedral-Bells-3-9-2025'],['Faetooth','Club Congress','Tucson, AZ','Friday','3/21/2025','7:30 PM','6950668','Faetooth-3-21-2025'],['Weatherday','Club Congress','Tucson, AZ','Wednesday','4/2/2025','7:00 PM','6791785','Weatherday-4-2-2025'],['Hovvdy','Club Congress','Tucson, AZ','Saturday','4/5/2025','7:00 PM','6777202','Hovvdy-4-5-2025'],['Youth Lagoon','Club Congress','Tucson, AZ','Friday','4/11/2025','7:00 PM','6917400','Youth-Lagoon-4-11-2025'],['Naked Giants','Club Congress','Tucson, AZ','Tuesday','4/22/2025','7:00 PM','6825339','Naked-Giants-4-22-2025'],['NNAMDI','Club Congress','Tucson, AZ','Friday','4/25/2025','7:00 PM','6963012','NNAMDI-4-25-2025'],['Chase Shakur','Club Congress','Tucson, AZ','Tuesday','4/29/2025','8:00 PM','6997134','Chase-Shakur-4-29-2025'],['La Luz','Club Congress','Tucson, AZ','Wednesday','4/30/2025','8:00 PM','6964739','La-Luz-4-30-2025'],['Surfer Blood & Winter','Club Congress','Tucson, AZ','Saturday','1/31/2071','7:00 PM','4408728','Surfer-Blood---Winter-1-31-2071']],'Club Congress','https://www.ticketnetwork.com/ticket/Club-Congress-events.aspx');