//
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','Bankhead Theater','Livermore, CA','Saturday','8/29/2026','6:00 PM','7939827','Lyle-Lovett-8-29-2026'],['Lyle Lovett','Alaska State Fair Borealis Theatre','Palmer, AK','Monday','9/7/2026','6:00 PM','7938555','Lyle-Lovett-9-7-2026'],['Lyle Lovett','Southern Alberta Jubilee Auditorium','Calgary, Canada','Wednesday','9/9/2026','7:00 PM','7864029','Lyle-Lovett-9-9-2026'],['Lyle Lovett','Northern Alberta Jubilee Auditorium','Edmonton, Canada','Thursday','9/10/2026','7:00 PM','7864030','Lyle-Lovett-9-10-2026'],['Lyle Lovett and His Large Band','South Okanagan Events Centre','Penticton, Canada','Saturday','9/12/2026','7:00 PM','7868556','Lyle-Lovett-and-His-Large-Band-9-12-2026'],['Lyle Lovett and his Small Large Band','Vogue Theatre - BC','Vancouver, Canada','Tuesday','9/15/2026','7:00 PM','7926884','Lyle-Lovett-and-his-Small-Large-Band-9-15-2026'],['Lyle Lovett','Royal Theatre - BC','Victoria, Canada','Wednesday','9/16/2026','7:00 PM','7870526','Lyle-Lovett-9-16-2026'],['Lyle Lovett','Conexus Arts Centre','Regina, Canada','Tuesday','9/22/2026','7:00 PM','7870525','Lyle-Lovett-9-22-2026'],['Lyle Lovett and His Large Band','TCU Place','Saskatoon, Canada','Wednesday','9/23/2026','7:00 PM','7866266','Lyle-Lovett-and-His-Large-Band-9-23-2026'],['Lyle Lovett','Burton Cummings Theatre','Winnipeg, Canada','Thursday','9/24/2026','7:30 PM','7864033','Lyle-Lovett-9-24-2026']],'Lyle Lovett','https://www.ticketnetwork.com');