//
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-04A
TN_Widget.CreateTable([['Journey Through the Ages','Jergel's Rhythm Grille','Warrendale, PA','Friday','7/25/2025','8:00 PM','7147780','Journey-Through-the-Ages-7-25-2025'],['The Jacksonville Rock Symphony Orchestra: Faithfully - A Tribute to Journey','Florida Theatre Jacksonville','Jacksonville, FL','Friday','8/8/2025','7:30 PM','7124594','The-Jacksonville-Rock-Symphony-Orchestra--Faithfully---A-Tribute-to-Journey-8-8-2025'],['Bon Journey: A Tribute to Bon Jovi and Journey','Jergel's Rhythm Grille','Warrendale, PA','Saturday','8/9/2025','8:00 PM','6909405','Bon-Journey--A-Tribute-to-Bon-Jovi-and-Journey-8-9-2025'],['Believin' Journey','Le Club Square Dix30','Brossard, Canada','Saturday','8/30/2025','8:00 PM','7067080','Believin--Journey-8-30-2025'],['Fort Worth Philharmonic: We Will Rock You - The Music of Journey and Queen','Foellinger Theatre','Fort Wayne, IN','Saturday','9/13/2025','7:30 PM','7228774','Fort-Worth-Philharmonic--We-Will-Rock-You---The-Music-of-Journey-and-Queen-9-13-2025'],['Queen Nation & Journey Revisited','AV Fair & Event Center','Lancaster, CA','Wednesday','9/24/2025','7:30 PM','7167675','Queen-Nation---Journey-Revisited-9-24-2025'],['Separate Ways - Journey Tribute','Dr. Pepper Park','Roanoke, VA','Friday','9/26/2025','6:00 PM','7006512','Separate-Ways---Journey-Tribute-9-26-2025'],['Journey Escape and Frampton Comes Alive: Rock Legends Tribute Show','Bing Crosby Theater','Spokane, WA','Saturday','10/18/2025','7:30 PM','7113206','Journey-Escape-and-Frampton-Comes-Alive--Rock-Legends-Tribute-Show-10-18-2025']],'Journey rock','http://www.ticketnetwork.com/ticket/Journey-rock-events.aspx');