//
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-02B
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/WidgetStyle9.css');
TN_Widget.CreateTable([['My Brother Elvis: An Evening with David Stanley','International Westgate Theater At Westgate Las Vegas Resort & Casino','Las Vegas, NV','Wednesday','2/4/2026','5:00 PM','7118565','My-Brother-Elvis--An-Evening-with-David-Stanley-2-4-2026'],['New Kids On The Block','Dolby Live at Park MGM','Las Vegas, NV','Saturday','2/14/2026','8:00 PM','6733254','New-Kids-On-The-Block-2-14-2026'],['New Kids On The Block','Dolby Live at Park MGM','Las Vegas, NV','Sunday','2/15/2026','8:00 PM','6733255','New-Kids-On-The-Block-2-15-2026'],['New Kids On The Block','Dolby Live at Park MGM','Las Vegas, NV','Wednesday','2/18/2026','8:00 PM','6733256','New-Kids-On-The-Block-2-18-2026'],['New Kids On The Block','Dolby Live at Park MGM','Las Vegas, NV','Friday','2/20/2026','8:00 PM','6733257','New-Kids-On-The-Block-2-20-2026'],['New Kids On The Block','Dolby Live at Park MGM','Las Vegas, NV','Saturday','2/21/2026','8:00 PM','6735626','New-Kids-On-The-Block-2-21-2026'],['Monty Python's Spamalot','Reynolds Hall at The Smith Center','Las Vegas, NV','Tuesday','2/24/2026','7:30 PM','6998909','Monty-Python-s-Spamalot-2-24-2026'],['Monty Python's Spamalot','Reynolds Hall at The Smith Center','Las Vegas, NV','Wednesday','2/25/2026','7:30 PM','6998910','Monty-Python-s-Spamalot-2-25-2026'],['New Kids On The Block','Dolby Live at Park MGM','Las Vegas, NV','Wednesday','2/25/2026','8:00 PM','6735627','New-Kids-On-The-Block-2-25-2026'],['Monty Python's Spamalot','Reynolds Hall at The Smith Center','Las Vegas, NV','Thursday','2/26/2026','7:30 PM','6998911','Monty-Python-s-Spamalot-2-26-2026']],'february Las Vegas','http://www.ticketnetwork.com/ticket/february-Las-Vegas-events.aspx');