//
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([['Celtic Thunder','George S. and Dolores Dore Eccles Theater','Salt Lake City, UT','Wednesday','10/15/2025','7:30 PM','7043567','Celtic-Thunder-10-15-2025'],['The Witcher in Concert','George S. and Dolores Dore Eccles Theater','Salt Lake City, UT','Thursday','10/16/2025','7:00 PM','7180446','The-Witcher-in-Concert-10-16-2025'],['Alicia Villarreal','George S. and Dolores Dore Eccles Theater','Salt Lake City, UT','Friday','10/17/2025','8:00 PM','7126976','Alicia-Villarreal-10-17-2025'],['Ludovico Einaudi','George S. and Dolores Dore Eccles Theater','Salt Lake City, UT','Saturday','10/18/2025','8:00 PM','6959735','Ludovico-Einaudi-10-18-2025'],['Jonathan Van Ness','George S. and Dolores Dore Eccles Theater','Salt Lake City, UT','Friday','10/24/2025','8:00 PM','7297402','Jonathan-Van-Ness-10-24-2025'],['Sal Vulcano','George S. and Dolores Dore Eccles Theater','Salt Lake City, UT','Saturday','10/25/2025','7:00 PM','7121736','Sal-Vulcano-10-25-2025'],['iLuminate','George S. and Dolores Dore Eccles Theater','Salt Lake City, UT','Saturday','11/1/2025','7:00 PM','7340628','iLuminate-11-1-2025'],['David Sedaris','George S. and Dolores Dore Eccles Theater','Salt Lake City, UT','Wednesday','11/5/2025','7:30 PM','7194434','David-Sedaris-11-5-2025'],['Suffs','George S. and Dolores Dore Eccles Theater','Salt Lake City, UT','Tuesday','11/11/2025','7:00 PM','7022866','Suffs-11-11-2025'],['Suffs','George S. and Dolores Dore Eccles Theater','Salt Lake City, UT','Wednesday','11/12/2025','7:00 PM','7022867','Suffs-11-12-2025']],'Eccles Theater Salt Lake City','http://www.ticketnetwork.com/en/search/?text=Eccles%20Theater%20Salt%20Lake%20City');