//
var TN_Widget = function() {
var months = ["", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
return {
newWindow : true,
CreateEventRow : function(row, isAlt) {
var dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
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,kwds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
var newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-04A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['Gillian Welch & David Rawlings','The Fillmore - San Francisco','San Francisco, CA','Friday','10/2/2026','8:00 PM','8167706','Gillian-Welch---David-Rawlings-10-2-2026'],['Gillian Welch & David Rawlings','Laxson Auditorium','Chico, CA','Sunday','10/4/2026','7:30 PM','8151322','Gillian-Welch---David-Rawlings-10-4-2026'],['Gillian Welch & David Rawlings','Warner Theatre - DC','Washington, DC','Sunday','10/18/2026','8:00 PM','8132615','Gillian-Welch---David-Rawlings-10-18-2026'],['Gillian Welch & David Rawlings - Tribute to Greatful Dead','The Lyric Baltimore','Baltimore, MD','Monday','10/19/2026','7:30 PM','8134608','Gillian-Welch---David-Rawlings---Tribute-to-Greatful-Dead-10-19-2026'],['Gillian Welch & David Rawlings','Carpenter Theatre At Dominion Energy Center','Richmond, VA','Tuesday','10/20/2026','7:30 PM','8133851','Gillian-Welch---David-Rawlings-10-20-2026'],['Gillian Welch & David Rawlings','Berglund Performing Arts Theatre','Roanoke, VA','Thursday','10/22/2026','7:30 PM','8135617','Gillian-Welch---David-Rawlings-10-22-2026'],['Gillian Welch & David Rawlings','Thomas Wolfe Auditorium at Harrah's Cherokee Center','Asheville, NC','Friday','10/23/2026','7:30 PM','8134227','Gillian-Welch---David-Rawlings-10-23-2026'],['Gillian Welch & David Rawlings','Thomas Wolfe Auditorium at Harrah's Cherokee Center','Asheville, NC','Saturday','10/24/2026','7:30 PM','8199767','Gillian-Welch---David-Rawlings-10-24-2026'],['Gillian Welch & David Rawlings','Bearsville Theater','Woodstock, NY','Tuesday','12/15/2026','8:00 PM','8266703','Gillian-Welch---David-Rawlings-12-15-2026'],['Gillian Welch & David Rawlings','Bearsville Theater','Woodstock, NY','Wednesday','12/16/2026','8:00 PM','8266704','Gillian-Welch---David-Rawlings-12-16-2026'],['Gillian Welch & David Rawlings Tribute to the Grateful Dead','State Theatre of Ithaca','Ithaca, NY','Thursday','12/17/2026','7:30 PM','8267756','Gillian-Welch---David-Rawlings-Tribute-to-the-Grateful-Dead-12-17-2026'],['Gillian Welch & David Rawlings Tribute to the Grateful Dead','Capitol Theatre - Port Chester','Port Chester, NY','Friday','12/18/2026','8:00 PM','8272309','Gillian-Welch---David-Rawlings-Tribute-to-the-Grateful-Dead-12-18-2026']],'Gillian Welch','http://www.ticketnetwork.com/en/search/?text=Gillian%20Welch');