//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "view
tickets",
tixUrl : "http://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[0] +" | " +
row[1] +" " +
row[2] +" | " +
row[3] +" " +
row[4] + " " +
row[5] + " | "+ 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-01A
TN_Widget.CreateTable([['Fooz Fighters - Foo Fighters Tribute','The Slowdown','Omaha, NE','Friday','5/30/2025','8:00 PM','7081621','Fooz-Fighters---Foo-Fighters-Tribute-5-30-2025'],['Everlong - Foo Fighters Tribute','Last Concert Cafe','Houston, TX','Saturday','5/31/2025','7:30 PM','7089655','Everlong---Foo-Fighters-Tribute-5-31-2025'],['Joe Hero - Foo Fighters Tribute','The Deck At House of Blues - Myrtle Beach','North Myrtle Beach, SC','Sunday','6/8/2025','6:00 PM','7057132','Joe-Hero---Foo-Fighters-Tribute-6-8-2025'],['Foo Fight - Tribute to the Foo Fighters','Hard Rock Hotel Daytona Beach','Daytona Beach, FL','Friday','6/13/2025','7:00 PM','7125536','Foo-Fight---Tribute-to-the-Foo-Fighters-6-13-2025'],['The Faux Fighters: A Tribute To The Foo Fighters','The Holding Company','San Diego, CA','Friday','6/20/2025','7:30 PM','7143481','The-Faux-Fighters--A-Tribute-To-The-Foo-Fighters-6-20-2025'],['Back and Forth - Foo Fighters Tribute','City Winery - Pittsburgh','Pittsburgh, PA','Friday','7/25/2025','7:30 PM','7056731','Back-and-Forth---Foo-Fighters-Tribute-7-25-2025'],['Back and Forth - Foo Fighters Tribute','The Westcott Theatre','Syracuse, NY','Saturday','7/26/2025','8:00 PM','7066014','Back-and-Forth---Foo-Fighters-Tribute-7-26-2025'],['Red NOT Chili Peppers - A Tribute to Red Hot Chili Peppers & Fooz Fighters - Foo Fighters Tribute','Innsbrook Pavilion','Glen Allen, VA','Thursday','8/14/2025','6:00 PM','6971569','Red-NOT-Chili-Peppers---A-Tribute-to-Red-Hot-Chili-Peppers---Fooz-Fighters---Foo-Fighters-Tribute-8-14-2025']],'Foo Fighters','http://www.ticketnetwork.com/ticket/Foo-Fighters-events.aspx');