//
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-01A
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([['Marty Stuart & Molly Tuttle','Smith Opera House','Geneva, NY','Thursday','2/12/2026','8:00 PM','7557729','Marty-Stuart---Molly-Tuttle-2-12-2026'],['Marty Stuart & Molly Tuttle','Strand Theatre at Appell Center for the Performing Arts','York, PA','Saturday','2/14/2026','7:30 PM','7557836','Marty-Stuart---Molly-Tuttle-2-14-2026'],['Marty Stuart & Molly Tuttle','Garde Arts Center','New London, CT','Sunday','2/15/2026','7:00 PM','7562328','Marty-Stuart---Molly-Tuttle-2-15-2026'],['Merlefest: Old Crow Medicine Show, Molly Tuttle & Steep Canyon Rangers - Friday','Merlefest Festival Grounds','Wilkesboro, NC','Friday','4/24/2026','9:30 AM','7554841','Merlefest--Old-Crow-Medicine-Show--Molly-Tuttle---Steep-Canyon-Rangers---Friday-4-24-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton & Molly Tuttle','Shoreline Amphitheatre - CA','Mountain View, CA','Wednesday','7/8/2026','7:30 PM','7668714','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Molly-Tuttle-7-8-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton & Molly Tuttle','North Island Credit Union Amphitheatre','Chula Vista, CA','Friday','7/10/2026','7:30 PM','7668716','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Molly-Tuttle-7-10-2026'],['Chris Stapleton's All-American Road Show: Chris Stapleton & Molly Tuttle','California Mid-state Fair Grounds','Paso Robles, CA','Tuesday','7/14/2026','7:30 PM','7668717','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Molly-Tuttle-7-14-2026']],'Molly Tuttle','http://www.ticketnetwork.com/en/search/?text=Molly%20Tuttle');