//
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([['Julius Caesar','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Tuesday','9/16/2025','1:30 PM','6850731','Julius-Caesar-9-16-2025'],['As You Like It','Stratford Festival Theatre','Stratford, Canada','Tuesday','9/16/2025','8:00 PM','6851411','As-You-Like-It-9-16-2025'],['The Flaming Lips','KettleHouse Amphitheater','Bonner, MT','Tuesday','9/16/2025','8:00 PM','7119801','The-Flaming-Lips-9-16-2025'],['Shane - The Play','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Wednesday','9/17/2025','1:30 PM','6850038','Shane---The-Play-9-17-2025'],['Sense and Sensibility','Stratford Festival Theatre','Stratford, Canada','Wednesday','9/17/2025','2:00 PM','6851657','Sense-and-Sensibility-9-17-2025'],['The Flaming Lips','Ogden Amphitheater','Ogden, UT','Wednesday','9/17/2025','5:00 PM','7022783','The-Flaming-Lips-9-17-2025'],['Annie','Stratford Festival Theatre','Stratford, Canada','Wednesday','9/17/2025','8:00 PM','6850303','Annie-9-17-2025'],['Into the Woods','Allen Elizabeth Theatre - Oregon Shakespeare Festival','Ashland, OR','Wednesday','9/17/2025','8:00 PM','6851327','Into-the-Woods-9-17-2025'],['Julius Caesar','Angus Bowmer Theatre - Oregon Shakespeare Festival','Ashland, OR','Wednesday','9/17/2025','8:00 PM','6850742','Julius-Caesar-9-17-2025'],['Nothin' Fancy Bluegrass Festival: Rhonda Vincent and The Rage, Malpass Brothers & Jimmy Fortune - 3 Day Pass','Glen Maury Park','Buena Vista, VA','Thursday','9/18/2025','TBD','7317557','Nothin--Fancy-Bluegrass-Festival--Rhonda-Vincent-and-The-Rage--Malpass-Brothers---Jimmy-Fortune---3-Day-Pass-9-18-2025']],'"Festival"','https://www.ticketnetwork.com');