//
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([['They Might Be Giants','Bearsville Theater','Woodstock, NY','Friday','4/17/2026','8:00 PM','7681252','They-Might-Be-Giants-4-17-2026'],['They Might Be Giants','Bearsville Theater','Woodstock, NY','Saturday','4/18/2026','8:00 PM','7681253','They-Might-Be-Giants-4-18-2026'],['They Might Be Giants','Vogue Theatre - IN','Indianapolis, IN','Friday','4/24/2026','8:00 PM','7681298','They-Might-Be-Giants-4-24-2026'],['They Might Be Giants','Vogue Theatre - IN','Indianapolis, IN','Saturday','4/25/2026','8:00 PM','7681299','They-Might-Be-Giants-4-25-2026'],['They Might Be Giants','Vogue Theatre - IN','Indianapolis, IN','Sunday','4/26/2026','8:00 PM','7681300','They-Might-Be-Giants-4-26-2026'],['They Might Be Giants','Majestic Theatre - MI','Detroit, MI','Tuesday','4/28/2026','7:00 PM','7682207','They-Might-Be-Giants-4-28-2026'],['They Might Be Giants','Majestic Theatre - MI','Detroit, MI','Wednesday','4/29/2026','7:00 PM','7682208','They-Might-Be-Giants-4-29-2026'],['They Might Be Giants','Vic Theatre','Chicago, IL','Friday','5/1/2026','8:00 PM','7682209','They-Might-Be-Giants-5-1-2026'],['They Might Be Giants','Vic Theatre','Chicago, IL','Saturday','5/2/2026','8:00 PM','7682210','They-Might-Be-Giants-5-2-2026'],['They Might Be Giants','Vic Theatre','Chicago, IL','Sunday','5/3/2026','8:00 PM','7682211','They-Might-Be-Giants-5-3-2026'],['They Might Be Giants','Union Transfer','Philadelphia, PA','Friday','5/15/2026','8:00 PM','7682212','They-Might-Be-Giants-5-15-2026'],['They Might Be Giants','Union Transfer','Philadelphia, PA','Saturday','5/16/2026','8:00 PM','7682213','They-Might-Be-Giants-5-16-2026'],['They Might Be Giants','Union Transfer','Philadelphia, PA','Sunday','5/17/2026','8:00 PM','7682214','They-Might-Be-Giants-5-17-2026'],['They Might Be Giants','Brooklyn Steel','Brooklyn, NY','Thursday','5/28/2026','8:00 PM','7682215','They-Might-Be-Giants-5-28-2026'],['They Might Be Giants','Brooklyn Steel','Brooklyn, NY','Friday','5/29/2026','8:00 PM','7682216','They-Might-Be-Giants-5-29-2026'],['They Might Be Giants','Brooklyn Steel','Brooklyn, NY','Saturday','5/30/2026','8:00 PM','7682217','They-Might-Be-Giants-5-30-2026'],['They Might Be Giants','Citizens House Of Blues - Boston','Boston, MA','Friday','6/5/2026','8:00 PM','7681836','They-Might-Be-Giants-6-5-2026'],['They Might Be Giants','Citizens House Of Blues - Boston','Boston, MA','Saturday','6/6/2026','8:00 PM','7681837','They-Might-Be-Giants-6-6-2026']],'They Might Be Giants','http://www.ticketnetwork.com/ticket/They-Might-Be-Giants-events.aspx');