//
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([['Jason Isbell & The 400 Unit','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Saturday','5/17/2025','7:00 PM','6874922','Jason-Isbell---The-400-Unit-5-17-2025'],['Lord Huron & Molly Lewis','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Friday','5/23/2025','7:30 PM','6788357','Lord-Huron---Molly-Lewis-5-23-2025'],['Khruangbin','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Thursday','5/29/2025','7:00 PM','6927970','Khruangbin-5-29-2025'],['The Black Keys','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Friday','5/30/2025','7:00 PM','6968077','The-Black-Keys-5-30-2025'],['Goose','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Sunday','6/1/2025','6:30 PM','6955985','Goose-6-1-2025'],['Earth, Wind and Fire','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Tuesday','6/17/2025','7:00 PM','6955671','Earth--Wind-and-Fire-6-17-2025'],['Modest Mouse','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Sunday','6/29/2025','7:00 PM','6958762','Modest-Mouse-6-29-2025'],['Lake Street Dive','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Tuesday','7/8/2025','7:00 PM','6956831','Lake-Street-Dive-7-8-2025'],['Alison Krauss and Union Station, Jerry Douglas & Willie Watson','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Wednesday','7/23/2025','7:30 PM','6861505','Alison-Krauss-and-Union-Station--Jerry-Douglas---Willie-Watson-7-23-2025'],['Chicago - The Band','Outlaw Field at The Idaho Botanical Garden','Boise, ID','Wednesday','8/27/2025','7:00 PM','6927769','Chicago---The-Band-8-27-2025']],'Idaho Botanical Garden','https://www.ticketnetwork.com/ticket/Idaho-Botanical-Garden-events.aspx');