//
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-03A
TN_Widget.CreateTable([['The Lone Bellow','State Theater - State College','State College, PA','Sunday','7/26/2026','8:00 PM','8015733','The-Lone-Bellow-7-26-2026'],['The Lone Bellow','Narrows Center For The Arts','Fall River, MA','Tuesday','7/28/2026','7:00 PM','7945720','The-Lone-Bellow-7-28-2026'],['The Lone Bellow','Kaufmann Concert Hall at 92nd Street Y','New York, NY','Thursday','7/30/2026','7:00 PM','8028658','The-Lone-Bellow-7-30-2026'],['The Lone Bellow','Swyer Theatre At The Egg','Albany, NY','Friday','7/31/2026','8:00 PM','7945717','The-Lone-Bellow-7-31-2026'],['The Lone Bellow','The Concert Hall at Groton Hill Music Center','Groton, MA','Saturday','8/1/2026','8:00 PM','7940739','The-Lone-Bellow-8-1-2026'],['The Lone Bellow','Tin Pan','Richmond, VA','Monday','8/3/2026','7:00 PM','8024650','The-Lone-Bellow-8-3-2026'],['The Lone Bellow','Eddie's Attic','Decatur, GA','Wednesday','8/5/2026','7:30 PM','8007553','The-Lone-Bellow-8-5-2026'],['The Lone Bellow','Eddie's Attic','Decatur, GA','Thursday','8/6/2026','7:30 PM','8007554','The-Lone-Bellow-8-6-2026'],['The Lone Bellow','The Domino Room','Bend, OR','Sunday','9/20/2026','8:00 PM','8028660','The-Lone-Bellow-9-20-2026'],['The Lone Bellow','Little Saint','Healdsburg, CA','Friday','9/25/2026','6:00 PM','8028661','The-Lone-Bellow-9-25-2026'],['The Lone Bellow','Belly Up Tavern','Solana Beach, CA','Sunday','9/27/2026','8:00 PM','8012908','The-Lone-Bellow-9-27-2026']],'The Lone Bellow','https://www.ticketnetwork.com/ticket/The-Lone-Bellow-events.aspx');