//
var TN_Widget = function() {
return {
CreateEventRow : function(row, isAlt) {
return "
" +
row[3] + " " +
row[4] + " " +
row[5] + " | " +
row[0] + " | " +
row[1] + " " +
row[2] + " | Tickets |
";
},
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 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 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-01A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/WidgetStyle11.css');
TN_Widget.CreateTable([['The Piano Guys','Tuacahn Amphitheatre and Centre for the Arts','Ivins, UT','Thursday','4/10/2025','8:00 PM','6880448','The-Piano-Guys-4-10-2025'],['The Piano Guys','Tuacahn Amphitheatre and Centre for the Arts','Ivins, UT','Friday','4/11/2025','8:00 PM','6880420','The-Piano-Guys-4-11-2025'],['The Piano Guys','Tuacahn Amphitheatre and Centre for the Arts','Ivins, UT','Saturday','4/12/2025','8:00 PM','6880313','The-Piano-Guys-4-12-2025']],'the piano guys','http://www.ticketnetwork.com/ticket/the-piano-guys-events.aspx');