//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Beyond Wonderland - 2 Day Pass','Gorge Amphitheatre','Quincy, WA','Saturday','6/21/2025','TBD','6806321','Beyond-Wonderland---2-Day-Pass-6-21-2025'],['Watershed Festival - 3 Day Pass','Gorge Amphitheatre','Quincy, WA','Friday','8/1/2025','TBD','6770259','Watershed-Festival---3-Day-Pass-8-1-2025'],['Watershed Festival - Friday','Gorge Amphitheatre','Quincy, WA','Friday','8/1/2025','1:00 PM','6770262','Watershed-Festival---Friday-8-1-2025'],['Watershed Festival - Saturday','Gorge Amphitheatre','Quincy, WA','Saturday','8/2/2025','1:00 PM','6770266','Watershed-Festival---Saturday-8-2-2025'],['Watershed Festival - Sunday','Gorge Amphitheatre','Quincy, WA','Sunday','8/3/2025','1:00 PM','6770267','Watershed-Festival---Sunday-8-3-2025'],['Tedeschi Trucks Band','Gorge Amphitheatre','Quincy, WA','Saturday','8/9/2025','7:00 PM','6946839','Tedeschi-Trucks-Band-8-9-2025'],['Bass Canyon Festival - 3 Day Pass','Gorge Amphitheatre','Quincy, WA','Friday','8/15/2025','TBD','6820069','Bass-Canyon-Festival---3-Day-Pass-8-15-2025'],['Bass Canyon Festival - Friday','Gorge Amphitheatre','Quincy, WA','Friday','8/15/2025','2:00 PM','6820072','Bass-Canyon-Festival---Friday-8-15-2025'],['Bass Canyon Festival - Saturday','Gorge Amphitheatre','Quincy, WA','Saturday','8/16/2025','2:00 PM','6820075','Bass-Canyon-Festival---Saturday-8-16-2025'],['Bass Canyon Festival - Sunday','Gorge Amphitheatre','Quincy, WA','Sunday','8/17/2025','2:00 PM','6820076','Bass-Canyon-Festival---Sunday-8-17-2025'],['Dave Matthews Band - 3 Day Pass','Gorge Amphitheatre','Quincy, WA','Friday','8/29/2025','TBD','6959447','Dave-Matthews-Band---3-Day-Pass-8-29-2025'],['Dave Matthews Band','Gorge Amphitheatre','Quincy, WA','Friday','8/29/2025','5:00 PM','6959444','Dave-Matthews-Band-8-29-2025'],['Dave Matthews Band','Gorge Amphitheatre','Quincy, WA','Saturday','8/30/2025','5:00 PM','6959445','Dave-Matthews-Band-8-30-2025'],['Dave Matthews Band','Gorge Amphitheatre','Quincy, WA','Sunday','8/31/2025','5:00 PM','6959446','Dave-Matthews-Band-8-31-2025']],'','https://www.ticketnetwork.com');