//
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-01A
TN_Widget.CreateTable([['Bloc Party: Metric','MGM Music Hall at Fenway Park','Boston, MA','Friday','5/30/2025','8:00 PM','6983442','Bloc-Party--Metric-5-30-2025'],['Bloc Party: Metric','Forest Hills Stadium','Forest Hills, NY','Saturday','5/31/2025','6:00 PM','6983486','Bloc-Party--Metric-5-31-2025'],['Bloc Party: Metric','The Anthem - D.C.','Washington, DC','Monday','6/2/2025','7:00 PM','6983448','Bloc-Party--Metric-6-2-2025'],['Bloc Party: Metric','The Met Presented by Highmark','Philadelphia, PA','Wednesday','6/4/2025','7:00 PM','6983449','Bloc-Party--Metric-6-4-2025'],['Bloc Party: Metric','Budweiser Stage - Toronto','Toronto, Canada','Friday','6/6/2025','7:00 PM','6983475','Bloc-Party--Metric-6-6-2025'],['Bloc Party: Metric','Fox Theatre - Detroit','Detroit, MI','Saturday','6/7/2025','7:00 PM','6983450','Bloc-Party--Metric-6-7-2025'],['Bloc Party: Metric','The Salt Shed Outdoors - Chicago','Chicago, IL','Sunday','6/8/2025','6:00 PM','6983454','Bloc-Party--Metric-6-8-2025'],['Bloc Party: Metric','The Armory - Minneapolis','Minneapolis, MN','Monday','6/9/2025','7:00 PM','6983456','Bloc-Party--Metric-6-9-2025'],['Bloc Party: Metric','Red Rocks Amphitheatre','Morrison, CO','Wednesday','6/11/2025','7:00 PM','6983487','Bloc-Party--Metric-6-11-2025'],['Bloc Party: Metric','The Union Event Center','Salt Lake City, UT','Thursday','6/12/2025','6:30 PM','6983461','Bloc-Party--Metric-6-12-2025'],['Bloc Party: Metric','Greek Theatre - U.C. Berkeley','Berkeley, CA','Saturday','6/14/2025','7:00 PM','6983468','Bloc-Party--Metric-6-14-2025'],['Bloc Party: Metric','Moda Center at the Rose Quarter','Portland, OR','Monday','6/16/2025','7:00 PM','6983469','Bloc-Party--Metric-6-16-2025']],'Metric','https://www.ticketnetwork.com/ticket/Metric-events.aspx');