//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Metal Mondays: High Desert Queen, Gran Moreno & Mars God','The Far Out Lounge & Stage','Austin, TX','Monday','4/27/2026','6:00 PM','7889608','Metal-Mondays--High-Desert-Queen--Gran-Moreno---Mars-God-4-27-2026'],['Biscuits & Banjos Festival: Rhiannon Giddens, Mavis Staples, The Blind Boys of Alabama & Rissi Palmer','Durham Performing Arts Center','Durham, NC','Monday','4/27/2026','7:00 PM','7706453','Biscuits---Banjos-Festival--Rhiannon-Giddens--Mavis-Staples--The-Blind-Boys-of-Alabama---Rissi-Palmer-4-27-2026'],['A Raisin in The Sun','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Tuesday','4/28/2026','1:30 PM','7742304','A-Raisin-in-The-Sun-4-28-2026'],['The Brothers Comatose','Roanoke Island Festival Park','Manteo, NC','Tuesday','4/28/2026','7:00 PM','7557550','The-Brothers-Comatose-4-28-2026'],['All District Music Festival: Chorus NP Night','Fred Kavli Theatre At Bank Of America Performing Arts Center','Thousand Oaks, CA','Tuesday','4/28/2026','7:00 PM','7875765','All-District-Music-Festival--Chorus-NP-Night-4-28-2026'],['Come From Away','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Tuesday','4/28/2026','8:00 PM','7740211','Come-From-Away-4-28-2026'],['All District Music Festival: Chorus WL Night','Fred Kavli Theatre At Bank Of America Performing Arts Center','Thousand Oaks, CA','Wednesday','4/29/2026','7:00 PM','7875766','All-District-Music-Festival--Chorus-WL-Night-4-29-2026'],['A Raisin in The Sun','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Wednesday','4/29/2026','8:00 PM','7742305','A-Raisin-in-The-Sun-4-29-2026'],['Little Roy and Lizzy Music Festival: Gene Watson, Rhonda Vincent & The Malpass Brothers - 3 Day Pass','Little Roy and Lizzy Music Festival Grounds','Lincolnton, GA','Thursday','4/30/2026','TBD','7775684','Little-Roy-and-Lizzy-Music-Festival--Gene-Watson--Rhonda-Vincent---The-Malpass-Brothers---3-Day-Pass-4-30-2026'],['Calf Fry Festival: Josh Meloy, Flatland Cavalry & Charles Wesley Godwin - 3 Day Pass','Tumbleweed Dancehall & Concert Venue','Stillwater, OK','Thursday','4/30/2026','TBD','7828430','Calf-Fry-Festival--Josh-Meloy--Flatland-Cavalry---Charles-Wesley-Godwin---3-Day-Pass-4-30-2026']],'"Festival"','https://www.ticketnetwork.com');