//
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([['Marshmello','Encore Beach Club','Las Vegas, NV','Saturday','6/27/2026','11:00 AM','7836030','Marshmello-6-27-2026'],['The King Comes Home','Westgate Cabaret At Westgate Las Vegas Resort & Casino','Las Vegas, NV','Saturday','6/27/2026','2:00 PM','7538016','The-King-Comes-Home-6-27-2026'],['Carpenters Legacy','V3 V Theater - Planet Hollywood Resort & Casino','Las Vegas, NV','Saturday','6/27/2026','5:00 PM','7433137','Carpenters-Legacy-6-27-2026'],['Foam Wonderland Las Vegas: Foam and Fireworks','Amphitheater At Craig Ranch Regional Park','North Las Vegas, NV','Saturday','6/27/2026','6:00 PM','7975431','Foam-Wonderland-Las-Vegas--Foam-and-Fireworks-6-27-2026'],['L.A. Comedy Club: Julio Gonzalez','The Dragon Room At Stratosphere Las Vegas','Las Vegas, NV','Saturday','6/27/2026','6:00 PM','7644802','L-A--Comedy-Club--Julio-Gonzalez-6-27-2026'],['The Australian Bee Gees','Thunderland Showroom at Excalibur Hotel & Casino','Las Vegas, NV','Saturday','6/27/2026','6:00 PM','7306813','The-Australian-Bee-Gees-6-27-2026'],['Spirit of the King: The Ultimate Elvis Show','Robin Leach Lounge at Notoriety','Las Vegas, NV','Saturday','6/27/2026','6:30 PM','7720815','Spirit-of-the-King--The-Ultimate-Elvis-Show-6-27-2026'],['The Fourmers','Showroom at South Point Hotel And Casino','Las Vegas, NV','Saturday','6/27/2026','7:00 PM','7894231','The-Fourmers-6-27-2026'],['Natalie Cuomo','Wiseguys Comedy Cafe - Town Square','Las Vegas, NV','Saturday','6/27/2026','7:00 PM','7679202','Natalie-Cuomo-6-27-2026'],['Motown Extreme Review','Motown Extreme Theater','Las Vegas, NV','Saturday','6/27/2026','7:00 PM','7625449','Motown-Extreme-Review-6-27-2026']],'Las Vegas Concert','http://www.ticketnetwork.com/en/search/?text=Las%20Vegas%20Concert');