//
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([['Carbon Leaf','World Cafe Live','Philadelphia, PA','Friday','12/5/2025','8:00 PM','7266596','Carbon-Leaf-12-5-2025'],['Carbon Leaf','Tupelo Music Hall','Derry, NH','Saturday','12/6/2025','8:00 PM','7272753','Carbon-Leaf-12-6-2025'],['Carbon Leaf','Rams Head On Stage','Annapolis, MD','Friday','12/12/2025','8:30 PM','7258923','Carbon-Leaf-12-12-2025'],['Carbon Leaf','Rams Head On Stage','Annapolis, MD','Saturday','12/13/2025','3:30 PM','7316097','Carbon-Leaf-12-13-2025'],['Carbon Leaf','Rams Head On Stage','Annapolis, MD','Saturday','12/13/2025','8:30 PM','7316098','Carbon-Leaf-12-13-2025'],['Carbon Leaf','Rams Head On Stage','Annapolis, MD','Sunday','12/14/2025','1:00 PM','7316099','Carbon-Leaf-12-14-2025'],['Carbon Leaf','Birchmere Music Hall','Alexandria, VA','Thursday','12/18/2025','7:30 PM','7267248','Carbon-Leaf-12-18-2025'],['Carbon Leaf','Birchmere Music Hall','Alexandria, VA','Friday','12/19/2025','7:30 PM','7267257','Carbon-Leaf-12-19-2025'],['Carbon Leaf','The National - VA','Richmond, VA','Wednesday','12/31/2025','9:00 PM','7317350','Carbon-Leaf-12-31-2025'],['Carbon Leaf','Charleston Pour House','Charleston, SC','Thursday','1/22/2026','8:00 PM','7401780','Carbon-Leaf-1-22-2026'],['Carbon Leaf','Vinyl - GA','Atlanta, GA','Friday','1/23/2026','8:00 PM','7400952','Carbon-Leaf-1-23-2026'],['Carbon Leaf','Skippers Smokehouse','Tampa, FL','Saturday','1/24/2026','7:00 PM','7401781','Carbon-Leaf-1-24-2026'],['Carbon Leaf','The Abbey - Orlando','Orlando, FL','Sunday','1/25/2026','7:00 PM','7401778','Carbon-Leaf-1-25-2026'],['Carbon Leaf','Heartwood Soundstage','Gainesville, FL','Monday','1/26/2026','7:30 PM','7401782','Carbon-Leaf-1-26-2026'],['Carbon Leaf','Cafe 11','St. Augustine, FL','Tuesday','1/27/2026','8:00 PM','7401783','Carbon-Leaf-1-27-2026']],'carbon leaf','http://www.ticketnetwork.com/en/search/?text=carbon%20leaf');