//
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([['Playing Dead - Grateful Dead Tribute','The Met - RI','Pawtucket, RI','Saturday','4/11/2026','9:00 PM','7797027','Playing-Dead---Grateful-Dead-Tribute-4-11-2026'],['Brass Attack','The Met - RI','Pawtucket, RI','Sunday','4/12/2026','5:00 PM','7712970','Brass-Attack-4-12-2026'],['Talib Kweli','The Met - RI','Pawtucket, RI','Saturday','4/25/2026','9:00 PM','7618074','Talib-Kweli-4-25-2026'],['Live Dead & Brothers','The Met - RI','Pawtucket, RI','Wednesday','4/29/2026','8:00 PM','7679273','Live-Dead---Brothers-4-29-2026'],['Nirvani - Nirvana Tribute Band','The Met - RI','Pawtucket, RI','Friday','5/1/2026','8:30 PM','7735329','Nirvani---Nirvana-Tribute-Band-5-1-2026'],['Opiate - Tribute to Tool & Alice - Tribute to Alice In Chains','The Met - RI','Pawtucket, RI','Saturday','5/2/2026','8:00 PM','7733142','Opiate---Tribute-to-Tool---Alice---Tribute-to-Alice-In-Chains-5-2-2026'],['Billy Prine','The Met - RI','Pawtucket, RI','Friday','5/8/2026','8:00 PM','7614098','Billy-Prine-5-8-2026'],['Earlybirds Club','The Met - RI','Pawtucket, RI','Saturday','5/9/2026','6:00 PM','7830732','Earlybirds-Club-5-9-2026'],['Cosmic Charlie','The Met - RI','Pawtucket, RI','Tuesday','5/12/2026','8:00 PM','7855682','Cosmic-Charlie-5-12-2026'],['The Smiths Tribute NYC','The Met - RI','Pawtucket, RI','Friday','5/15/2026','8:00 PM','7726139','The-Smiths-Tribute-NYC-5-15-2026'],['Oblivious Fools - Phish Tribute','The Met - RI','Pawtucket, RI','Saturday','5/16/2026','8:30 PM','7820190','Oblivious-Fools---Phish-Tribute-5-16-2026'],['Vanessa Carlton','The Met - RI','Pawtucket, RI','Sunday','5/17/2026','7:30 PM','7745689','Vanessa-Carlton-5-17-2026'],['Blackbeard's Freak Show','The Met - RI','Pawtucket, RI','Saturday','5/23/2026','7:00 PM','7747043','Blackbeard-s-Freak-Show-5-23-2026'],['Nutshell - Alice in Chains Tribute ','The Met - RI','Pawtucket, RI','Friday','5/29/2026','8:00 PM','7812159','Nutshell---Alice-in-Chains-Tribute--5-29-2026'],['Chrome Horse - Bob Dylan Tribute','The Met - RI','Pawtucket, RI','Sunday','6/7/2026','8:00 PM','7564189','Chrome-Horse---Bob-Dylan-Tribute-6-7-2026'],['MTV Unplugged Tribute Band','The Met - RI','Pawtucket, RI','Sunday','6/14/2026','5:00 PM','7718482','MTV-Unplugged-Tribute-Band-6-14-2026']],'The Met Pawtucket','http://www.ticketnetwork.com/ticket/The-Met-Pawtucket-events.aspx');