//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "Tickets",
tixUrl : "https://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
" +
row[3] +" "+"" +
row[4] + " "+"" +
row[5] + " | "+"" +
row[0] +" | " +
row[1] +" " +
row[2] +" | "+""+ this.linkText+ " |
";
},
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,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-03A
TN_Widget.CreateTable([['Bloc Party: Metric','Forest Hills Stadium','Forest Hills, NY','Saturday','5/31/2025','6:00 PM','6983486','Bloc-Party--Metric-5-31-2025'],['Dr. Dog & Crumb','Forest Hills Stadium','Forest Hills, NY','Saturday','6/21/2025','5:30 PM','6874148','Dr--Dog---Crumb-6-21-2025'],['Phish - 2 Day Pass','Forest Hills Stadium','Forest Hills, NY','Tuesday','7/22/2025','TBD','7009428','Phish---2-Day-Pass-7-22-2025'],['Phish','Forest Hills Stadium','Forest Hills, NY','Tuesday','7/22/2025','6:00 PM','6996971','Phish-7-22-2025'],['Phish','Forest Hills Stadium','Forest Hills, NY','Wednesday','7/23/2025','6:00 PM','6996972','Phish-7-23-2025'],['King Gizzard & The Lizard Wizard With The Orchestra of St. Luke's','Forest Hills Stadium','Forest Hills, NY','Friday','8/1/2025','7:00 PM','6790220','King-Gizzard---The-Lizard-Wizard-With-The-Orchestra-of-St--Luke-s-8-1-2025'],['King Gizzard & The Lizard Wizard (Rock 'n Roll Set)','Forest Hills Stadium','Forest Hills, NY','Saturday','8/2/2025','6:30 PM','6790222','King-Gizzard---The-Lizard-Wizard--Rock--n-Roll-Set--8-2-2025'],['Alabama Shakes','Forest Hills Stadium','Forest Hills, NY','Wednesday','9/17/2025','7:00 PM','6977593','Alabama-Shakes-9-17-2025'],['Tyler Childers','Forest Hills Stadium','Forest Hills, NY','Monday','9/29/2025','7:00 PM','6826154','Tyler-Childers-9-29-2025'],['Tyler Childers','Forest Hills Stadium','Forest Hills, NY','Tuesday','9/30/2025','7:00 PM','6826155','Tyler-Childers-9-30-2025'],['Parcels - Band','Forest Hills Stadium','Forest Hills, NY','Friday','10/24/2025','6:30 PM','7033697','Parcels---Band-10-24-2025']],'Forest Hills Stadium','https://www.ticketnetwork.com/ticket/Forest-Hills-Stadium-events.aspx');