//
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-04A
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([['The Pillowman','Carnival Studio Theatre At The Adrienne Arsht Center','Miami, FL','Thursday','11/7/2024','7:30 PM','6464585','The-Pillowman-11-7-2024'],['The Pillowman','Carnival Studio Theatre At The Adrienne Arsht Center','Miami, FL','Friday','11/8/2024','7:30 PM','6464586','The-Pillowman-11-8-2024'],['The Pillowman','Carnival Studio Theatre At The Adrienne Arsht Center','Miami, FL','Saturday','11/9/2024','2:30 PM','6464587','The-Pillowman-11-9-2024'],['The Pillowman','Carnival Studio Theatre At The Adrienne Arsht Center','Miami, FL','Saturday','11/9/2024','7:30 PM','6464588','The-Pillowman-11-9-2024'],['The Pillowman','Carnival Studio Theatre At The Adrienne Arsht Center','Miami, FL','Sunday','11/10/2024','2:30 PM','6464589','The-Pillowman-11-10-2024'],['Electro Dub Tango','Thomson Plaza for the Arts At The Adrienne Arsht Center','Miami, FL','Friday','11/15/2024','7:30 PM','6775403','Electro-Dub-Tango-11-15-2024'],['Florida Grand Opera: The Magic Flute','Ziff Opera House At The Adrienne Arsht Center','Miami, FL','Saturday','11/16/2024','7:00 PM','6782403','Florida-Grand-Opera--The-Magic-Flute-11-16-2024'],['Florida Grand Opera: The Magic Flute','Ziff Opera House At The Adrienne Arsht Center','Miami, FL','Sunday','11/17/2024','2:00 PM','6782404','Florida-Grand-Opera--The-Magic-Flute-11-17-2024'],['Florida Grand Opera: The Magic Flute','Ziff Opera House At The Adrienne Arsht Center','Miami, FL','Tuesday','11/19/2024','8:00 PM','6782405','Florida-Grand-Opera--The-Magic-Flute-11-19-2024'],['Jean Caze','Thomson Plaza for the Arts At The Adrienne Arsht Center','Miami, FL','Thursday','11/21/2024','7:30 PM','6775404','Jean-Caze-11-21-2024']],'Adrienne Arsht Center Miami','http://www.ticketnetwork.com/en/search/?text=Adrienne%20Arsht%20Center%20Miami');