//
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([['Death Angel','Starland Ballroom','Sayreville, NJ','Friday','5/15/2026','7:00 PM','7754130','Death-Angel-5-15-2026'],['Earlybirds Club','Starland Ballroom','Sayreville, NJ','Saturday','5/16/2026','6:00 PM','7802622','Earlybirds-Club-5-16-2026'],['Sevendust','Starland Ballroom','Sayreville, NJ','Saturday','5/23/2026','7:00 PM','7690577','Sevendust-5-23-2026'],['Modest Mouse','Starland Ballroom','Sayreville, NJ','Friday','6/5/2026','8:00 PM','7705800','Modest-Mouse-6-5-2026'],['Almost Creed','Starland Ballroom','Sayreville, NJ','Saturday','6/6/2026','8:00 PM','7921859','Almost-Creed-6-6-2026'],['Everclear','Starland Ballroom','Sayreville, NJ','Saturday','6/20/2026','8:00 PM','7733384','Everclear-6-20-2026'],['The Cab','Starland Ballroom','Sayreville, NJ','Friday','6/26/2026','7:30 PM','7743894','The-Cab-6-26-2026'],['Supersonic - Tribute to Oasis','Starland Ballroom','Sayreville, NJ','Friday','7/17/2026','8:00 PM','7827749','Supersonic---Tribute-to-Oasis-7-17-2026'],['Mannequin Pussy','Starland Ballroom','Sayreville, NJ','Saturday','8/1/2026','8:00 PM','7829449','Mannequin-Pussy-8-1-2026'],['Will Wood','Starland Ballroom','Sayreville, NJ','Saturday','8/29/2026','8:00 PM','7866255','Will-Wood-8-29-2026'],['AFI','Starland Ballroom','Sayreville, NJ','Saturday','10/10/2026','8:00 PM','7931296','AFI-10-10-2026'],['The Story So Far','Starland Ballroom','Sayreville, NJ','Tuesday','10/20/2026','7:30 PM','7893710','The-Story-So-Far-10-20-2026'],['Insane Clown Posse','Starland Ballroom','Sayreville, NJ','Wednesday','10/21/2026','7:00 PM','7863838','Insane-Clown-Posse-10-21-2026'],['Hawthorne Heights','Starland Ballroom','Sayreville, NJ','Sunday','10/25/2026','7:00 PM','7815579','Hawthorne-Heights-10-25-2026']],'Starland Ballroom','https://www.ticketnetwork.com/ticket/Starland-Ballroom-events.aspx');