//
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-02A
TN_Widget.CreateTable([['The Songs of Stevie Nicks and Sheryl Crow','Meaford Hall Arts And Cultural Centre','Meaford, Canada','Wednesday','4/2/2025','7:30 PM','6878542','The-Songs-of-Stevie-Nicks-and-Sheryl-Crow-4-2-2025'],['StevieMac: A Fleetwood Mac and Stevie Nicks Experience','The Vogel at the Count Basie Center for the Arts','Red Bank, NJ','Friday','5/2/2025','7:30 PM','6965554','StevieMac--A-Fleetwood-Mac-and-Stevie-Nicks-Experience-5-2-2025'],['Classic Troubadours: The Songs of Sheryl Crow and Stevie Nicks','The Empire Theater - Belleville','Belleville, Canada','Saturday','5/10/2025','7:30 PM','6916100','Classic-Troubadours--The-Songs-of-Sheryl-Crow-and-Stevie-Nicks-5-10-2025'],['StevieMac: A Fleetwood Mac and Stevie Nicks Experience','Newberry Opera House','Newberry, SC','Friday','5/30/2025','8:00 PM','6849978','StevieMac--A-Fleetwood-Mac-and-Stevie-Nicks-Experience-5-30-2025'],['Billy Joel & Stevie Nicks','MetLife Stadium','East Rutherford, NJ','Friday','8/8/2025','7:00 PM','6866183','Billy-Joel---Stevie-Nicks-8-8-2025'],['Billy Joel & Stevie Nicks','Levi's Stadium','Santa Clara, CA','Saturday','10/4/2025','7:00 PM','7014329','Billy-Joel---Stevie-Nicks-10-4-2025'],['Billy Joel & Stevie Nicks','Caesars Superdome','New Orleans, LA','Saturday','10/18/2025','7:00 PM','6989823','Billy-Joel---Stevie-Nicks-10-18-2025'],['Billy Joel & Stevie Nicks','Ford Field','Detroit, MI','Saturday','11/15/2025','7:00 PM','6731216','Billy-Joel---Stevie-Nicks-11-15-2025']],'Stevie Nicks','http://www.ticketnetwork.com/ticket/Stevie-Nicks-events.aspx');