//
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-02A
TN_Widget.CreateTable([['Peter Dante, Rehab & Scotty Austin','Adelphia Music Hall','Marietta, OH','Friday','4/11/2025','9:00 PM','6926677','Peter-Dante--Rehab---Scotty-Austin-4-11-2025'],['Austin Symphony Orchestra: Peter Bay - The Music of John Williams Part 2','Dell Hall at Long Center For The Performing Arts','Austin, TX','Saturday','5/31/2025','7:30 PM','6567299','Austin-Symphony-Orchestra--Peter-Bay---The-Music-of-John-Williams-Part-2-5-31-2025'],['The Sound of Music','Bass Concert Hall','Austin, TX','Tuesday','2/3/2026','7:30 PM','7022130','The-Sound-of-Music-2-3-2026'],['The Sound of Music','Bass Concert Hall','Austin, TX','Wednesday','2/4/2026','7:30 PM','7022131','The-Sound-of-Music-2-4-2026'],['The Sound of Music','Bass Concert Hall','Austin, TX','Thursday','2/5/2026','7:30 PM','7022132','The-Sound-of-Music-2-5-2026'],['The Sound of Music','Bass Concert Hall','Austin, TX','Friday','2/6/2026','8:00 PM','7022133','The-Sound-of-Music-2-6-2026'],['The Sound of Music','Bass Concert Hall','Austin, TX','Saturday','2/7/2026','2:00 PM','7022135','The-Sound-of-Music-2-7-2026'],['The Sound of Music','Bass Concert Hall','Austin, TX','Saturday','2/7/2026','8:00 PM','7022134','The-Sound-of-Music-2-7-2026'],['The Sound of Music','Bass Concert Hall','Austin, TX','Sunday','2/8/2026','1:00 PM','7022136','The-Sound-of-Music-2-8-2026'],['The Sound of Music','Bass Concert Hall','Austin, TX','Sunday','2/8/2026','6:30 PM','7022137','The-Sound-of-Music-2-8-2026']],'Austin Music Hall','https://www.ticketnetwork.com/ticket/Austin-Music-Hall-events.aspx');