//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "view
tickets",
tixUrl : "http://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[0] +" | " +
row[1] +" " +
row[2] +" | " +
row[3] +" " +
row[4] + " " +
row[5] + " | "+ 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([['Greenbelt Music Festival: Greensky Bluegrass, Shovels and Rope & Charlie Parr - Saturday','Horizon Events Center','Clive, IA','Saturday','5/17/2025','2:00 PM','7009097','Greenbelt-Music-Festival--Greensky-Bluegrass--Shovels-and-Rope---Charlie-Parr---Saturday-5-17-2025'],['Sawtooth Valley Gathering: Leftover Salmon, Daniel Donato's Cosmic Country & Shovels and Rope - 4 Day Pass','Mountain Village Resort','Stanley, ID','Thursday','6/19/2025','TBD','6833990','Sawtooth-Valley-Gathering--Leftover-Salmon--Daniel-Donato-s-Cosmic-Country---Shovels-and-Rope---4-Day-Pass-6-19-2025'],['The Trails End Music Festival: Shovels and Rope, Glitterfox & Colby T. Helms','Main Street Brewery - CA','Pleasanton, CA','Friday','6/27/2025','6:00 PM','7028729','The-Trails-End-Music-Festival--Shovels-and-Rope--Glitterfox---Colby-T--Helms-6-27-2025'],['Out of Space Skokie: Shakey Graves, Joy Oladokun & Shovels and Ropes - Friday','Illinois Science and Technology Park','Skokie, IL','Friday','7/25/2025','6:00 PM','7104842','Out-of-Space-Skokie--Shakey-Graves--Joy-Oladokun---Shovels-and-Ropes---Friday-7-25-2025'],['Centerfest Music Festival: Shovels and Rope & KT Tunstall','Creekside Pavilion','Lewistown, MT','Saturday','8/2/2025','12:00 PM','7028725','Centerfest-Music-Festival--Shovels-and-Rope---KT-Tunstall-8-2-2025'],['Shovels and Rope','The Ramkat','Winston Salem, NC','Thursday','8/28/2025','8:00 PM','7083417','Shovels-and-Rope-8-28-2025'],['Shovels and Rope','El Club','Detroit, MI','Friday','1/23/2071','7:00 PM','4309162','Shovels-and-Rope-1-23-2071']],'Shovels','http://www.ticketnetwork.com/ticket/Shovels-events.aspx');