//
var TN_Widget = function() {
var months = ["", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
return {
newWindow : true,
CreateEventRow : function(row, isAlt) {
var dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
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,kwds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
var newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-03A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['Van Jones','Dr. Phillips Center - Steinmetz Hall','Orlando, FL','Saturday','9/5/2026','7:00 PM','8100098','Van-Jones-9-5-2026'],['Norberto Velez','Dr. Phillips Center - Steinmetz Hall','Orlando, FL','Sunday','9/6/2026','7:00 PM','7864628','Norberto-Velez-9-6-2026'],['Charley Crockett','Dr. Phillips Center - Walt Disney Theater','Orlando, FL','Wednesday','9/9/2026','8:00 PM','7788536','Charley-Crockett-9-9-2026'],['D.L. Hughley & Don Lemon','Dr. Phillips Center - Walt Disney Theater','Orlando, FL','Saturday','9/12/2026','7:00 PM','8095065','D-L--Hughley---Don-Lemon-9-12-2026'],['Music for the Macabre','Dr. Phillips Center - Alexis & Jim Pugh Theater','Orlando, FL','Sunday','9/13/2026','3:00 PM','8068673','Music-for-the-Macabre-9-13-2026'],['Clint Black','Dr. Phillips Center - Walt Disney Theater','Orlando, FL','Friday','9/18/2026','7:30 PM','7810009','Clint-Black-9-18-2026'],['Benise','Dr. Phillips Center - Alexis & Jim Pugh Theater','Orlando, FL','Thursday','9/24/2026','7:00 PM','7853948','Benise-9-24-2026'],['Little Big Town','Dr. Phillips Center - Walt Disney Theater','Orlando, FL','Friday','9/25/2026','7:30 PM','8034455','Little-Big-Town-9-25-2026'],['Bonnie Prince Billy','Dr. Phillips Center - Alexis & Jim Pugh Theater','Orlando, FL','Saturday','9/26/2026','8:00 PM','7853949','Bonnie-Prince-Billy-9-26-2026'],['Hamilton','Dr. Phillips Center - Walt Disney Theater','Orlando, FL','Tuesday','9/29/2026','7:30 PM','7741706','Hamilton-9-29-2026']],'Dr Phillips Center Orlando','http://www.ticketnetwork.com/en/search/?text=Dr%20Phillips%20Center%20Orlando');