//
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 t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
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 newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-04A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Lyle Lovett and His Large Band','Cape Cod Melody Tent','Hyannis, MA','Wednesday','7/30/2025','7:30 PM','6983547','Lyle-Lovett-and-His-Large-Band-7-30-2025'],['Lyle Lovett and His Large Band','Bowl in the Pines','Augusta, ME','Thursday','7/31/2025','6:00 PM','7046672','Lyle-Lovett-and-His-Large-Band-7-31-2025'],['Lyle Lovett and His Large Band','Ben & Jerry's Concerts on The Green At Shelburne Museum','Shelburne, VT','Friday','8/1/2025','7:30 PM','7046673','Lyle-Lovett-and-His-Large-Band-8-1-2025'],['Lyle Lovett and His Large Band','Caramoor Center for Music and The Arts','Katonah, NY','Saturday','8/2/2025','7:30 PM','7067225','Lyle-Lovett-and-His-Large-Band-8-2-2025'],['Lyle Lovett and His Large Band','Point of the Bluff Vineyards','Hammondsport, NY','Sunday','8/3/2025','4:30 PM','6880026','Lyle-Lovett-and-His-Large-Band-8-3-2025'],['Lyle Lovett and His Large Band','College Street Music Hall','New Haven, CT','Tuesday','8/5/2025','8:00 PM','7045500','Lyle-Lovett-and-His-Large-Band-8-5-2025'],['Lyle Lovett and His Large Band','Freeman Arts Pavilion','Selbyville, DE','Wednesday','8/6/2025','7:30 PM','7032795','Lyle-Lovett-and-His-Large-Band-8-6-2025'],['Lyle Lovett and His Large Band & Asleep at the Wheel','Wolf Trap National Park for the Performing Arts','Vienna, VA','Thursday','8/7/2025','8:00 PM','6982804','Lyle-Lovett-and-His-Large-Band---Asleep-at-the-Wheel-8-7-2025'],['Lyle Lovett','Davies Symphony Hall','San Francisco, CA','Saturday','9/13/2025','7:30 PM','7252705','Lyle-Lovett-9-13-2025'],['Lyle Lovett & His Acoustic Group','Harvester Performance Center','Rocky Mount, VA','Tuesday','9/23/2025','8:00 PM','7236894','Lyle-Lovett---His-Acoustic-Group-9-23-2025']],'Lyle Lovett','https://www.ticketnetwork.com');