//
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-02B
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([['Insomniac x Tomorrowland: UNITY','Sphere','Las Vegas, NV','Friday','8/29/2025','11:15 PM','7062319','Insomniac-x-Tomorrowland--UNITY-8-29-2025'],['Insomniac x Tomorrowland: UNITY','Sphere','Las Vegas, NV','Saturday','8/30/2025','11:15 PM','7062320','Insomniac-x-Tomorrowland--UNITY-8-30-2025'],['Insomniac x Tomorrowland: UNITY','Sphere','Las Vegas, NV','Sunday','8/31/2025','11:15 PM','7062321','Insomniac-x-Tomorrowland--UNITY-8-31-2025'],['Insomniac x Tomorrowland: UNITY','Sphere','Las Vegas, NV','Friday','9/19/2025','11:15 PM','7070419','Insomniac-x-Tomorrowland--UNITY-9-19-2025'],['Insomniac x Tomorrowland: UNITY','Sphere','Las Vegas, NV','Saturday','9/20/2025','11:15 PM','7070420','Insomniac-x-Tomorrowland--UNITY-9-20-2025'],['Insomniac x Tomorrowland: UNITY','Sphere','Las Vegas, NV','Friday','9/26/2025','11:15 PM','7070421','Insomniac-x-Tomorrowland--UNITY-9-26-2025'],['Insomniac x Tomorrowland: UNITY','Sphere','Las Vegas, NV','Saturday','9/27/2025','11:15 PM','7070422','Insomniac-x-Tomorrowland--UNITY-9-27-2025'],['Insomniac x Tomorrowland: UNITY','Sphere','Las Vegas, NV','Friday','10/17/2025','11:15 PM','7070423','Insomniac-x-Tomorrowland--UNITY-10-17-2025'],['Insomniac x Tomorrowland: UNITY','Sphere','Las Vegas, NV','Saturday','10/18/2025','11:15 PM','7070424','Insomniac-x-Tomorrowland--UNITY-10-18-2025']],'tomorrowland','http://www.ticketnetwork.com/en/search/?text=tomorrowland');