//
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([['Shovels and Rope','Washington's - Fort Collins','Fort Collins, CO','Thursday','10/1/2026','7:00 PM','7958550','Shovels-and-Rope-10-1-2026'],['Shovels and Rope','The Lincoln - Cheyenne','Cheyenne, WY','Friday','10/2/2026','8:00 PM','7957071','Shovels-and-Rope-10-2-2026'],['Shovels and Rope','Mangy Moose Saloon','Teton Village, WY','Saturday','10/3/2026','8:30 PM','7969651','Shovels-and-Rope-10-3-2026'],['Shovels and Rope','The Elm - Bozeman','Bozeman, MT','Sunday','10/4/2026','8:00 PM','7958884','Shovels-and-Rope-10-4-2026'],['Shovels and Rope','Top Hat Lounge & Casino','Missoula, MT','Tuesday','10/6/2026','8:00 PM','8101699','Shovels-and-Rope-10-6-2026'],['Shovels and Rope','Neurolux Lounge','Boise, ID','Saturday','10/10/2026','8:00 PM','8192373','Shovels-and-Rope-10-10-2026'],['Shovels and Rope','Harlow's Night Club','Sacramento, CA','Tuesday','10/13/2026','8:00 PM','8019620','Shovels-and-Rope-10-13-2026'],['Shovels and Rope','Sweetwater Music Hall','Mill Valley, CA','Wednesday','10/14/2026','8:00 PM','7995686','Shovels-and-Rope-10-14-2026'],['Shovels and Rope','The Guild Theatre - Menlo Park','Menlo Park, CA','Friday','10/16/2026','8:00 PM','7917623','Shovels-and-Rope-10-16-2026'],['Shovels and Rope','The Venice West','Venice, CA','Saturday','10/17/2026','8:00 PM','7970240','Shovels-and-Rope-10-17-2026'],['Shovels and Rope','Pappy & Harriet's Pioneertown Palace - Indoor Stage','Pioneertown, CA','Sunday','10/18/2026','9:00 PM','7973553','Shovels-and-Rope-10-18-2026']],'Shovels','http://www.ticketnetwork.com/ticket/Shovels-events.aspx');