//
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([['Come From Away','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Wednesday','3/18/2026','8:00 PM','7740168','Come-From-Away-3-18-2026'],['Okeechobee Music & Arts Festival: Cage The Elephant, GRiZ, Fisher, & The Lumineers - 4 Day Pass','Sunshine Grove - FL','Okeechobee, FL','Thursday','3/19/2026','TBD','7097768','Okeechobee-Music---Arts-Festival--Cage-The-Elephant--GRiZ--Fisher----The-Lumineers---4-Day-Pass-3-19-2026'],['Suwannee Spring Reunion - 4 Day Pass','Spirit Of The Suwannee Music Park','Live Oak, FL','Thursday','3/19/2026','TBD','7477278','Suwannee-Spring-Reunion---4-Day-Pass-3-19-2026'],['Luck Reunion ','Luck Ranch','Spicewood, TX','Thursday','3/19/2026','11:00 AM','7635817','Luck-Reunion--3-19-2026'],['Fair Grounds Live Racing','New Orleans Fair Grounds','New Orleans, LA','Thursday','3/19/2026','12:45 PM','7548969','Fair-Grounds-Live-Racing-3-19-2026'],['HUMP! Film Festival','Washington Hall - Seattle','Seattle, WA','Thursday','3/19/2026','6:30 PM','7605541','HUMP--Film-Festival-3-19-2026'],['Banff Centre Mountain Film Festival World Tour','The Schaefer Center for the Performing Arts','Boone, NC','Thursday','3/19/2026','7:30 PM','7685983','Banff-Centre-Mountain-Film-Festival-World-Tour-3-19-2026'],['A Raisin in The Sun','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Thursday','3/19/2026','8:00 PM','7741594','A-Raisin-in-The-Sun-3-19-2026'],['HUMP! Film Festival','Washington Hall - Seattle','Seattle, WA','Thursday','3/19/2026','9:00 PM','7605599','HUMP--Film-Festival-3-19-2026'],['Outlaws & Legends Music Festival - 2 Day Pass','The Back Porch of Texas','Abilene, TX','Friday','3/20/2026','TBD','7640849','Outlaws---Legends-Music-Festival---2-Day-Pass-3-20-2026']],'"Festival"','https://www.ticketnetwork.com');