//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Anne Wilson','Stage One at Harris Center for the Arts','Folsom, CA','Friday','1/9/2026','7:00 PM','7175398','Anne-Wilson-1-9-2026'],['Anne Wilson','Arlington Theatre','Santa Barbara, CA','Saturday','1/10/2026','7:00 PM','7187975','Anne-Wilson-1-10-2026'],['Anne Wilson','Mark C. Smith Concert Hall at the Von Braun Center','Huntsville, AL','Thursday','3/12/2026','7:00 PM','7566530','Anne-Wilson-3-12-2026'],['Anne Wilson','Crown Theatre - The Crown Center','Fayetteville, NC','Friday','3/13/2026','7:00 PM','7566531','Anne-Wilson-3-13-2026'],['Anne Wilson','Altria Theater - Richmond','Richmond, VA','Saturday','3/14/2026','7:00 PM','7566455','Anne-Wilson-3-14-2026'],['Anne Wilson','Dr. Phillips Center - Walt Disney Theater','Orlando, FL','Friday','3/20/2026','7:00 PM','7566460','Anne-Wilson-3-20-2026'],['Anne Wilson','Moran Theater At Jacksonville Center for the Performing Arts','Jacksonville, FL','Saturday','3/21/2026','7:00 PM','7566463','Anne-Wilson-3-21-2026'],['Anne Wilson','Fabulous Fox Theatre - Atlanta','Atlanta, GA','Thursday','3/26/2026','7:00 PM','7567493','Anne-Wilson-3-26-2026'],['Anne Wilson','Ovens Auditorium','Charlotte, NC','Friday','3/27/2026','7:00 PM','7566449','Anne-Wilson-3-27-2026'],['Anne Wilson','Township Auditorium','Columbia, SC','Saturday','3/28/2026','7:00 PM','7566536','Anne-Wilson-3-28-2026']],'Anne Wilson','https://www.ticketnetwork.com');