//
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-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Lyle Lovett','City Winery At City Foundry STL','St. Louis, MO','Wednesday','5/13/2026','7:30 PM','7815704','Lyle-Lovett-5-13-2026'],['Lyle Lovett','City Winery At City Foundry STL','St. Louis, MO','Thursday','5/14/2026','7:30 PM','7815705','Lyle-Lovett-5-14-2026'],['Lyle Lovett','City Winery At City Foundry STL','St. Louis, MO','Friday','5/15/2026','7:30 PM','7815706','Lyle-Lovett-5-15-2026'],['Lyle Lovett','City Winery - Pittsburgh','Pittsburgh, PA','Wednesday','5/27/2026','7:30 PM','7813169','Lyle-Lovett-5-27-2026'],['Lyle Lovett','City Winery - Pittsburgh','Pittsburgh, PA','Thursday','5/28/2026','7:30 PM','7813170','Lyle-Lovett-5-28-2026'],['Lyle Lovett','City Winery - Pittsburgh','Pittsburgh, PA','Friday','5/29/2026','7:30 PM','7813171','Lyle-Lovett-5-29-2026'],['Lyle Lovett','Birchmere Music Hall','Alexandria, VA','Saturday','5/30/2026','7:30 PM','7813409','Lyle-Lovett-5-30-2026'],['Lyle Lovett','Birchmere Music Hall','Alexandria, VA','Sunday','5/31/2026','7:30 PM','7813410','Lyle-Lovett-5-31-2026'],['Lyle Lovett','City Winery - Chicago','Chicago, IL','Sunday','6/7/2026','7:30 PM','7813553','Lyle-Lovett-6-7-2026'],['Lyle Lovett','City Winery - Chicago','Chicago, IL','Monday','6/8/2026','7:30 PM','7813554','Lyle-Lovett-6-8-2026']],'"Lyle Lovett"','https://www.ticketnetwork.com');