//
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([['kwn','The Beacham','Orlando, FL','Friday','3/27/2026','7:00 PM','7552326','kwn-3-27-2026'],['Electric Feels: Indie Rock & Electronic Dance Party','The Beacham','Orlando, FL','Friday','4/3/2026','9:00 PM','7747498','Electric-Feels--Indie-Rock---Electronic-Dance-Party-4-3-2026'],['DaBaby','The Beacham','Orlando, FL','Sunday','4/5/2026','7:00 PM','7721631','DaBaby-4-5-2026'],['Phoneboy & Heart Attack Man','The Beacham','Orlando, FL','Saturday','4/11/2026','6:00 PM','7705958','Phoneboy---Heart-Attack-Man-4-11-2026'],['Dark Tranquillity, Soen, & Persefone','The Beacham','Orlando, FL','Tuesday','4/14/2026','6:00 PM','7695143','Dark-Tranquillity--Soen----Persefone-4-14-2026'],['Lexa Gates','The Beacham','Orlando, FL','Wednesday','4/22/2026','7:00 PM','7694131','Lexa-Gates-4-22-2026'],['Concrete Boys','The Beacham','Orlando, FL','Friday','4/24/2026','7:00 PM','7772993','Concrete-Boys-4-24-2026'],['Fishbone','The Beacham','Orlando, FL','Friday','5/1/2026','6:00 PM','7683274','Fishbone-5-1-2026'],['Inner Wave & Los Mesoneros','The Beacham','Orlando, FL','Sunday','5/3/2026','7:00 PM','7688265','Inner-Wave---Los-Mesoneros-5-3-2026'],['Kings Kaleidoscope','The Beacham','Orlando, FL','Wednesday','5/13/2026','7:00 PM','7155550','Kings-Kaleidoscope-5-13-2026'],['Chuwi','The Beacham','Orlando, FL','Saturday','5/16/2026','7:00 PM','7722539','Chuwi-5-16-2026'],['Touche Amore','The Beacham','Orlando, FL','Wednesday','9/9/2026','7:00 PM','7590600','Touche-Amore-9-9-2026'],['Infinity Song','The Beacham','Orlando, FL','Tuesday','10/6/2026','7:00 PM','7633028','Infinity-Song-10-6-2026']],'Beacham Theater','http://www.ticketnetwork.com/ticket/Beacham-Theater-events.aspx');