//
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-04A
TN_Widget.CreateTable([['The Lou Fighters - A Tribute To The Foo Fighters','Diesel Concert Lounge','New Baltimore, MI','Saturday','2/8/2025','8:00 PM','6905645','The-Lou-Fighters---A-Tribute-To-The-Foo-Fighters-2-8-2025'],['Back and Forth - Foo Fighters Tribute','Jergel's Rhythm Grille','Warrendale, PA','Sunday','2/16/2025','7:00 PM','6861360','Back-and-Forth---Foo-Fighters-Tribute-2-16-2025'],['Fresh Fighters - Tribute to Foo Fighters','Wooly's','Des Moines, IA','Saturday','2/22/2025','7:30 PM','6969732','Fresh-Fighters---Tribute-to-Foo-Fighters-2-22-2025'],['Fooz Fighters - Foo Fighters Tribute','Riviera Theatre - NY','North Tonawanda, NY','Friday','3/14/2025','7:30 PM','6768692','Fooz-Fighters---Foo-Fighters-Tribute-3-14-2025'],['Fooz Fighters - Foo Fighters Tribute','Essex - NY','Rochester, NY','Saturday','3/15/2025','8:00 PM','6944362','Fooz-Fighters---Foo-Fighters-Tribute-3-15-2025'],['Fooz Fighters - Foo Fighters Tribute','Miniaci Performing Arts Center','Fort Lauderdale, FL','Saturday','3/22/2025','8:00 PM','6903882','Fooz-Fighters---Foo-Fighters-Tribute-3-22-2025'],['Joe Hero - Foo Fighters Tribute','Amos' Southend','Charlotte, NC','Friday','4/4/2025','8:00 PM','6923203','Joe-Hero---Foo-Fighters-Tribute-4-4-2025'],['Back and Forth - Foo Fighters Tribute','John, James and Clara Knight Stage','Akron, OH','Saturday','4/19/2025','7:30 PM','6955776','Back-and-Forth---Foo-Fighters-Tribute-4-19-2025'],['Red NOT Chili Peppers - A Tribute to Red Hot Chili Peppers & Fooz Fighters - Foo Fighters Tribute','SERVPRO Richmond 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');