//
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([['Jason Isbell & The 400 Unit','Sandy Amphitheater','Sandy, UT','Monday','5/5/2025','7:00 PM','6874919','Jason-Isbell---The-400-Unit-5-5-2025'],['Jason Isbell & The 400 Unit','Sandy Amphitheater','Sandy, UT','Tuesday','5/6/2025','7:00 PM','6874920','Jason-Isbell---The-400-Unit-5-6-2025'],['Lord Huron & Molly Lewis','Sandy Amphitheater','Sandy, UT','Saturday','5/31/2025','7:00 PM','6788361','Lord-Huron---Molly-Lewis-5-31-2025'],['Peach Pit & Briston Maroney','Sandy Amphitheater','Sandy, UT','Tuesday','6/3/2025','6:00 PM','6837233','Peach-Pit---Briston-Maroney-6-3-2025'],['Hauser','Sandy Amphitheater','Sandy, UT','Saturday','6/7/2025','8:00 PM','6762353','Hauser-6-7-2025'],['Trombone Shorty And Orleans Avenue','Sandy Amphitheater','Sandy, UT','Tuesday','6/17/2025','7:00 PM','6873444','Trombone-Shorty-And-Orleans-Avenue-6-17-2025'],['Lake Street Dive','Sandy Amphitheater','Sandy, UT','Saturday','6/21/2025','7:00 PM','6956830','Lake-Street-Dive-6-21-2025'],['Melissa Etheridge & Indigo Girls','Sandy Amphitheater','Sandy, UT','Saturday','7/26/2025','6:30 PM','6869766','Melissa-Etheridge---Indigo-Girls-7-26-2025'],['Australian Pink Floyd Show','Sandy Amphitheater','Sandy, UT','Sunday','8/10/2025','7:00 PM','6968475','Australian-Pink-Floyd-Show-8-10-2025'],['Chicago - The Band','Sandy Amphitheater','Sandy, UT','Thursday','8/21/2025','8:00 PM','6927768','Chicago---The-Band-8-21-2025'],['Kidz Bop Live','Sandy Amphitheater','Sandy, UT','Friday','10/3/2025','7:00 PM','6980723','Kidz-Bop-Live-10-3-2025']],'Sandy Amphitheater','https://www.ticketnetwork.com/ticket/Sandy-Amphitheater-events.aspx');