//
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-02A
TN_Widget.CreateTable([['The Tallest Man on Earth','Haw River Ballroom','Saxapahaw, NC','Saturday','4/5/2025','8:00 PM','6886580','The-Tallest-Man-on-Earth-4-5-2025'],['The Tallest Man on Earth','The National - VA','Richmond, VA','Sunday','4/6/2025','7:30 PM','6886640','The-Tallest-Man-on-Earth-4-6-2025'],['The Tallest Man on Earth','Music Center At Strathmore','North Bethesda, MD','Tuesday','4/8/2025','8:00 PM','6886643','The-Tallest-Man-on-Earth-4-8-2025'],['The Tallest Man on Earth','Taft Theatre','Cincinnati, OH','Thursday','4/10/2025','8:00 PM','6886644','The-Tallest-Man-on-Earth-4-10-2025'],['The Tallest Man on Earth','Asbury Hall at Babeville','Buffalo, NY','Friday','4/11/2025','8:00 PM','6886645','The-Tallest-Man-on-Earth-4-11-2025'],['The Tallest Man on Earth','The Concert Hall at Toronto Masonic Temple','Toronto, Canada','Saturday','4/12/2025','7:00 PM','6886646','The-Tallest-Man-on-Earth-4-12-2025'],['The Tallest Man on Earth','Thalia Hall','Chicago, IL','Tuesday','4/15/2025','8:00 PM','6886627','The-Tallest-Man-on-Earth-4-15-2025'],['The Tallest Man on Earth','RCU Theatre At Pablo Center at the Confluence','Eau Claire, WI','Wednesday','4/16/2025','7:30 PM','6886651','The-Tallest-Man-on-Earth-4-16-2025'],['The Tallest Man on Earth','Englert Theatre','Iowa City, IA','Thursday','4/17/2025','7:30 PM','6886652','The-Tallest-Man-on-Earth-4-17-2025'],['The Tallest Man on Earth','The Truman - Kansas City','Kansas City, MO','Friday','4/18/2025','8:00 PM','6886654','The-Tallest-Man-on-Earth-4-18-2025'],['Bluebird Music Festival: Watchhouse, The Tallest Man on Earth, Hiss Golden Messenger & Neffy - Sunday Afternoon','Macky Auditorium Concert Hall','Boulder, CO','Sunday','4/20/2025','12:00 PM','6826012','Bluebird-Music-Festival--Watchhouse--The-Tallest-Man-on-Earth--Hiss-Golden-Messenger---Neffy---Sunday-Afternoon-4-20-2025'],['Bluebird Music Festival: Watchhouse, The Tallest Man on Earth & Wrenn Van Band - Sunday Evening','Macky Auditorium Concert Hall','Boulder, CO','Sunday','4/20/2025','5:00 PM','6826013','Bluebird-Music-Festival--Watchhouse--The-Tallest-Man-on-Earth---Wrenn-Van-Band---Sunday-Evening-4-20-2025'],['The Tallest Man on Earth','Bourbon Theatre - NE','Lincoln, NE','Tuesday','4/22/2025','8:00 PM','6886621','The-Tallest-Man-on-Earth-4-22-2025'],['The Tallest Man on Earth','Pabst Theater','Milwaukee, WI','Thursday','4/24/2025','8:00 PM','6886656','The-Tallest-Man-on-Earth-4-24-2025'],['The Tallest Man on Earth','Stuart's Opera House','Nelsonville, OH','Sunday','4/27/2025','7:30 PM','6886660','The-Tallest-Man-on-Earth-4-27-2025']],'The Tallest Man on Earth','https://www.ticketnetwork.com/ticket/The-Tallest-Man-on-Earth-events.aspx');