//
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([['A Raisin in The Sun','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Tuesday','4/7/2026','1:30 PM','7742013','A-Raisin-in-The-Sun-4-7-2026'],['Abracadabra','Solvang Festival Theater','Solvang, CA','Tuesday','4/7/2026','7:30 PM','7744832','Abracadabra-4-7-2026'],['A Midsummer Night's Dream','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Tuesday','4/7/2026','8:00 PM','7746931','A-Midsummer-Night-s-Dream-4-7-2026'],['Come From Away','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Wednesday','4/8/2026','1:30 PM','7740174','Come-From-Away-4-8-2026'],['Freely Fest: The Killers, T-Pain, Dominic Fike, Janelle Monae & Avery Anna','Bridgestone Arena','Nashville, TN','Wednesday','4/8/2026','5:30 PM','7629957','Freely-Fest--The-Killers--T-Pain--Dominic-Fike--Janelle-Monae---Avery-Anna-4-8-2026'],['A Raisin in The Sun','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Wednesday','4/8/2026','8:00 PM','7742090','A-Raisin-in-The-Sun-4-8-2026'],['Country Thunder Arizona: Gavin Adcock, Lainey Wilson, Zach Top & Brooks and Dunn - 4 Day Pass','Country Thunder USA - AZ','Florence, AZ','Thursday','4/9/2026','TBD','7093314','Country-Thunder-Arizona--Gavin-Adcock--Lainey-Wilson--Zach-Top---Brooks-and-Dunn---4-Day-Pass-4-9-2026'],['Country Thunder Arizona: Gavin Adcock & Waylon Wyatt - Thursday','Country Thunder USA - AZ','Florence, AZ','Thursday','4/9/2026','1:00 PM','7093315','Country-Thunder-Arizona--Gavin-Adcock---Waylon-Wyatt---Thursday-4-9-2026'],['North Carolina Azalea Festival: Lil Jon','Live Oak Bank Pavilion At Riverfront Park','Wilmington, NC','Thursday','4/9/2026','7:00 PM','7699948','North-Carolina-Azalea-Festival--Lil-Jon-4-9-2026'],['The Charlotte Ideas Festival: Derek Thompson','The Carolina Theatre At Belk Place','Charlotte, NC','Thursday','4/9/2026','7:00 PM','7700283','The-Charlotte-Ideas-Festival--Derek-Thompson-4-9-2026']],'"Festival"','https://www.ticketnetwork.com');