//
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-03A
TN_Widget.CreateTable([['Our House - The Music of Crosby, Stills, Nash & Young','Nancy and David Bilheimer Capitol Theatre','Clearwater, FL','Friday','5/9/2025','8:00 PM','7043382','Our-House---The-Music-of-Crosby--Stills--Nash---Young-5-9-2025'],['Four Way Street - Crosby Stills and Nash Tribute Band','Stephen Talkhouse','Amagansett, NY','Saturday','5/10/2025','8:00 PM','6899670','Four-Way-Street---Crosby-Stills-and-Nash-Tribute-Band-5-10-2025'],['A Back To The Garden Story Concert - The Music of Crosby Stills Nash & Young','Belly Up Tavern','Solana Beach, CA','Sunday','6/8/2025','7:00 PM','6931835','A-Back-To-The-Garden-Story-Concert---The-Music-of-Crosby-Stills-Nash---Young-6-8-2025'],['The Wooden Ships Band - Tribute to Crosby, Stills and Nash','The Theater at North ','Scranton, PA','Saturday','6/14/2025','7:00 PM','6858690','The-Wooden-Ships-Band---Tribute-to-Crosby--Stills-and-Nash-6-14-2025'],['A Tribute to Crosby, Stills, Nash and Young','Stadium Theatre Performing Arts Center','Woonsocket, RI','Saturday','8/9/2025','8:00 PM','6935775','A-Tribute-to-Crosby--Stills--Nash-and-Young-8-9-2025'],['Harvest Moon - Crosby, Stills, Nash and Young Tribute','Walhalla Performing Arts Center','Walhalla, SC','Friday','8/29/2025','7:30 PM','7021914','Harvest-Moon---Crosby--Stills--Nash-and-Young-Tribute-8-29-2025'],['Four Way Street - Crosby Stills and Nash Tribute Band','Ymca Boulton Center For The Performing Arts','Bay Shore, NY','Saturday','9/13/2025','8:00 PM','7121346','Four-Way-Street---Crosby-Stills-and-Nash-Tribute-Band-9-13-2025']],'Crosby, Stills','http://www.ticketnetwork.com/ticket/Crosby,-Stills-events.aspx');