//
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([['Telluride Bluegrass Festival - 4 Day Pass','Town Park Telluride','Telluride, CO','Thursday','6/19/2025','TBD','6762512','Telluride-Bluegrass-Festival---4-Day-Pass-6-19-2025'],['Telluride Bluegrass Festival - Thursday','Town Park Telluride','Telluride, CO','Thursday','6/19/2025','10:00 AM','6762514','Telluride-Bluegrass-Festival---Thursday-6-19-2025'],['Telluride Bluegrass Festival: Greensky Bluegrass & Lake Street Dive - Friday','Town Park Telluride','Telluride, CO','Friday','6/20/2025','10:00 AM','6762515','Telluride-Bluegrass-Festival--Greensky-Bluegrass---Lake-Street-Dive---Friday-6-20-2025'],['Telluride Bluegrass Festival - Saturday ','Town Park Telluride','Telluride, CO','Saturday','6/21/2025','10:00 AM','6762517','Telluride-Bluegrass-Festival---Saturday--6-21-2025'],['Telluride Bluegrass Festival - Sunday','Town Park Telluride','Telluride, CO','Sunday','6/22/2025','10:00 AM','6762519','Telluride-Bluegrass-Festival---Sunday-6-22-2025'],['Telluride Jazz Festival: Kamasi Washington, Trombone Shorty and Orleans Avenue & Karl Denson's Tiny Universe - 3 Day Pass','Town Park Telluride','Telluride, CO','Friday','8/8/2025','TBD','6727363','Telluride-Jazz-Festival--Kamasi-Washington--Trombone-Shorty-and-Orleans-Avenue---Karl-Denson-s-Tiny-Universe---3-Day-Pass-8-8-2025'],['Telluride Jazz Festival - Friday','Town Park Telluride','Telluride, CO','Friday','8/8/2025','12:00 PM','6727364','Telluride-Jazz-Festival---Friday-8-8-2025'],['Telluride Jazz Festival - Saturday','Town Park Telluride','Telluride, CO','Saturday','8/9/2025','11:30 AM','6727365','Telluride-Jazz-Festival---Saturday-8-9-2025'],['Telluride Jazz Festival - Sunday','Town Park Telluride','Telluride, CO','Sunday','8/10/2025','12:30 PM','6727366','Telluride-Jazz-Festival---Sunday-8-10-2025'],['Telluride Blues And Brews Festival - 3 Day Pass','Town Park Telluride','Telluride, CO','Friday','9/12/2025','TBD','6755702','Telluride-Blues-And-Brews-Festival---3-Day-Pass-9-12-2025'],['Telluride Blues And Brews Festival - Friday','Town Park Telluride','Telluride, CO','Friday','9/12/2025','11:30 AM','6755703','Telluride-Blues-And-Brews-Festival---Friday-9-12-2025'],['Telluride Blues And Brews Festival - Saturday','Town Park Telluride','Telluride, CO','Saturday','9/13/2025','11:30 AM','6755704','Telluride-Blues-And-Brews-Festival---Saturday-9-13-2025'],['Telluride Blues And Brews Festival - Sunday','Town Park Telluride','Telluride, CO','Sunday','9/14/2025','11:30 AM','6755706','Telluride-Blues-And-Brews-Festival---Sunday-9-14-2025']],'Telluride Town Park','https://www.ticketnetwork.com/ticket/Telluride-Town-Park-events.aspx');