//
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([['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'],['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'],['Breakaway Beach','National Hotel - Miami Beach','Miami Beach, FL','Thursday','3/26/2026','12:00 PM','7716568','Breakaway-Beach-3-26-2026'],['Treefort Music Fest - Thursday','Treefort Music Festival','Boise, ID','Thursday','3/26/2026','1:00 PM','7350868','Treefort-Music-Fest---Thursday-3-26-2026'],['Zerbini Family Circus','National Peanut Festival','Dothan, AL','Thursday','3/26/2026','6:00 PM','7684065','Zerbini-Family-Circus-3-26-2026'],['Raleigh Comedy Festival','Room 861 At Goodnights Comedy Club','Raleigh, NC','Thursday','3/26/2026','7:15 PM','7753123','Raleigh-Comedy-Festival-3-26-2026'],['HBCU Awarefest: Jill Scott, John Legend, & Earth, Wind and Fire','State Farm Arena - GA','Atlanta, GA','Thursday','3/26/2026','7:30 PM','7566448','HBCU-Awarefest--Jill-Scott--John-Legend----Earth--Wind-and-Fire-3-26-2026'],['A Midsummer Night's Dream','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Thursday','3/26/2026','8:00 PM','7746906','A-Midsummer-Night-s-Dream-3-26-2026']],'"Festival"','https://www.ticketnetwork.com');