//
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([['Come From Away','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Tuesday','4/14/2026','1:30 PM','7740178','Come-From-Away-4-14-2026'],['Bush, Mammoth & James and the Cold Gun','Red Hat Amphitheater','Raleigh, NC','Tuesday','4/14/2026','7:00 PM','7670307','Bush--Mammoth---James-and-the-Cold-Gun-4-14-2026'],['A Raisin in The Sun','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Tuesday','4/14/2026','8:00 PM','7742093','A-Raisin-in-The-Sun-4-14-2026'],['A Midsummer Night's Dream','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Wednesday','4/15/2026','1:30 PM','7746983','A-Midsummer-Night-s-Dream-4-15-2026'],['Come From Away','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Wednesday','4/15/2026','8:00 PM','7740207','Come-From-Away-4-15-2026'],['Resonate Suwannee Music Festival: CloZee, Shpongle & Mickman - 3 Day Pass','Spirit Of The Suwannee Music Park','Live Oak, FL','Thursday','4/16/2026','TBD','7556142','Resonate-Suwannee-Music-Festival--CloZee--Shpongle---Mickman---3-Day-Pass-4-16-2026'],['Lamb Of God, Kublai Khan TX & Fit For An Autopsy','Red Hat Amphitheater','Raleigh, NC','Thursday','4/16/2026','7:00 PM','7569854','Lamb-Of-God--Kublai-Khan-TX---Fit-For-An-Autopsy-4-16-2026'],['Youth America Grand Prix: International Dance School Festival','David H. Koch Theater','New York, NY','Thursday','4/16/2026','7:00 PM','7669559','Youth-America-Grand-Prix--International-Dance-School-Festival-4-16-2026'],['Gridlife South Carolina Festival - Friday','Carolina Motorsports Park','Kershaw, SC','Friday','4/17/2026','TBD','7642246','Gridlife-South-Carolina-Festival---Friday-4-17-2026'],['Breakaway Music Festival Tampa: Tiesto & Dom Dolla - 2 Day Pass','Raymond James Stadium Grounds','Tampa, FL','Friday','4/17/2026','TBD','7532031','Breakaway-Music-Festival-Tampa--Tiesto---Dom-Dolla---2-Day-Pass-4-17-2026']],'"Festival"','https://www.ticketnetwork.com');