//
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([['St. Vincent','The Factory in Deep Ellum','Dallas, TX','Sunday','4/6/2025','8:00 PM','6820468','St--Vincent-4-6-2025'],['St. Vincent','Moody Amphitheater','Austin, TX','Monday','4/7/2025','7:30 PM','6820464','St--Vincent-4-7-2025'],['St. Vincent','White Oak Music Hall - Lawn','Houston, TX','Tuesday','4/8/2025','6:00 PM','6820465','St--Vincent-4-8-2025'],['St. Vincent','Orpheum Theater - New Orleans','New Orleans, LA','Thursday','4/10/2025','8:00 PM','6820332','St--Vincent-4-10-2025'],['St. Vincent','The Tabernacle - GA','Atlanta, GA','Friday','4/11/2025','8:00 PM','6820466','St--Vincent-4-11-2025'],['St. Vincent','Ting Pavilion','Charlottesville, VA','Saturday','4/12/2025','8:00 PM','6820333','St--Vincent-4-12-2025'],['St. Vincent','Stage AE','Pittsburgh, PA','Sunday','4/13/2025','7:00 PM','6820334','St--Vincent-4-13-2025'],['St. Vincent','College Street Music Hall','New Haven, CT','Friday','4/18/2025','8:00 PM','6820385','St--Vincent-4-18-2025'],['John Vincent III','Off Broadway','St. Louis, MO','Saturday','4/19/2025','8:00 PM','6790514','John-Vincent-III-4-19-2025'],['St. Vincent','The Mission Ballroom','Denver, CO','Friday','5/16/2025','8:00 PM','6961212','St--Vincent-5-16-2025'],['The Lumineers, St. Vincent & Hippo Campus','Fenway Park','Boston, MA','Thursday','7/17/2025','6:00 PM','7003813','The-Lumineers--St--Vincent---Hippo-Campus-7-17-2025'],['The Lumineers, St. Vincent & Hippo Campus','Fenway Park','Boston, MA','Friday','7/18/2025','6:00 PM','6987676','The-Lumineers--St--Vincent---Hippo-Campus-7-18-2025'],['The Lumineers, St. Vincent & Lake Street Dive','Soldier Field','Chicago, IL','Saturday','8/30/2025','6:30 PM','6987690','The-Lumineers--St--Vincent---Lake-Street-Dive-8-30-2025']],'St. Vincent','https://www.ticketnetwork.com/ticket/St.-Vincent-events.aspx');