//
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([['Chicago Tattoo Arts Festival','Donald E. Stephens Convention Center','Rosemont, IL','Sunday','3/22/2026','TBD','7491237','Chicago-Tattoo-Arts-Festival-3-22-2026'],['Cochise Country Music Festival: Mark Chesnutt & Little Texas - Sunday','4EVR Ranch Equestrian Center','Benson, AZ','Sunday','3/22/2026','TBD','7551418','Cochise-Country-Music-Festival--Mark-Chesnutt---Little-Texas---Sunday-3-22-2026'],['Fair Grounds Live Racing','New Orleans Fair Grounds','New Orleans, LA','Sunday','3/22/2026','12:45 PM','7549078','Fair-Grounds-Live-Racing-3-22-2026'],['Ticitozaa Folklorico Dance Festival','Concert Hall at California Center For The Arts Escondido','Escondido, CA','Sunday','3/22/2026','5:00 PM','7695514','Ticitozaa-Folklorico-Dance-Festival-3-22-2026'],['A Raisin in The Sun','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Tuesday','3/24/2026','8:00 PM','7741642','A-Raisin-in-The-Sun-3-24-2026'],['Factory Town Music Week - 5 Day Pass','Factory Town','Miami, FL','Wednesday','3/25/2026','TBD','7649126','Factory-Town-Music-Week---5-Day-Pass-3-25-2026'],['Treefort Music Fest - 5 Day Pass','Treefort Music Festival','Boise, ID','Wednesday','3/25/2026','TBD','7350863','Treefort-Music-Fest---5-Day-Pass-3-25-2026'],['Zerbini Family Circus','National Peanut Festival','Dothan, AL','Wednesday','3/25/2026','5:00 PM','7684063','Zerbini-Family-Circus-3-25-2026'],['Zerbini Family Circus','National Peanut Festival','Dothan, AL','Wednesday','3/25/2026','7:00 PM','7684064','Zerbini-Family-Circus-3-25-2026'],['Come From Away','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Wednesday','3/25/2026','8:00 PM','7740170','Come-From-Away-3-25-2026']],'"Festival"','https://www.ticketnetwork.com');