//
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([['Satisfaction - Rolling Stones Tribute','Paramount Theatre - Abilene','Abilene, TX','Thursday','2/6/2025','7:00 PM','6885152','Satisfaction---Rolling-Stones-Tribute-2-6-2025'],['Rolling Stones vs. The Beatles','The Ardmore Music Hall','Ardmore, PA','Sunday','2/16/2025','7:00 PM','6902005','Rolling-Stones-vs--The-Beatles-2-16-2025'],['Brown Sugar - Rolling Stones Tribute','118 North','Wayne, PA','Saturday','3/15/2025','9:00 PM','6901685','Brown-Sugar---Rolling-Stones-Tribute-3-15-2025'],['Oregon Symphony: Brent Havens - The Music of the Rolling Stones','Arlene Schnitzer Concert Hall','Portland, OR','Thursday','3/20/2025','7:30 PM','6893524','Oregon-Symphony--Brent-Havens---The-Music-of-the-Rolling-Stones-3-20-2025'],['Rolling Stones Mania','Palace Theatre - PA','Greensburg, PA','Thursday','4/24/2025','7:30 PM','6601427','Rolling-Stones-Mania-4-24-2025'],['Music Of The Rolling Stones','Southern Kentucky Performing Arts Center','Bowling Green, KY','Saturday','4/26/2025','7:30 PM','6675238','Music-Of-The-Rolling-Stones-4-26-2025'],['Classic Albums Live Tribute Show: The Rolling Stones - Exile on Main St','Nancy and David Bilheimer Capitol Theatre','Clearwater, FL','Friday','6/13/2025','8:00 PM','6732586','Classic-Albums-Live-Tribute-Show--The-Rolling-Stones---Exile-on-Main-St-6-13-2025'],['Jumping Jack Flash - Rolling Stones Tribute','Meadow Brook Theatre','Rochester Hills, MI','Friday','7/11/2025','6:00 PM','6756000','Jumping-Jack-Flash---Rolling-Stones-Tribute-7-11-2025'],['Satisfaction - Rolling Stones Tribute','Lexington Village Theatre','Lexington, MI','Saturday','7/12/2025','8:00 PM','6928533','Satisfaction---Rolling-Stones-Tribute-7-12-2025']],'The Rolling Stones','http://www.ticketnetwork.com/ticket/The-Rolling-Stones-events.aspx');