//
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-03A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/WidgetStyle9.css');
TN_Widget.CreateTable([['Piano Man','V3 V Theater - Planet Hollywood Resort & Casino','Las Vegas, NV','Monday','2/1/2027','6:30 PM','7893472','Piano-Man-2-1-2027'],['Piano Man','V3 V Theater - Planet Hollywood Resort & Casino','Las Vegas, NV','Tuesday','2/2/2027','6:30 PM','7893473','Piano-Man-2-2-2027'],['Piano Man','V3 V Theater - Planet Hollywood Resort & Casino','Las Vegas, NV','Wednesday','2/3/2027','6:30 PM','7893474','Piano-Man-2-3-2027'],['Shin Lim','Palazzo Theatre At the Venetian Las Vegas','Las Vegas, NV','Wednesday','2/3/2027','7:00 PM','7857199','Shin-Lim-2-3-2027'],['Metallica - 2 Day Pass (Good for 2/4 & 2/6 Dates Only)','Sphere','Las Vegas, NV','Thursday','2/4/2027','TBD','7785092','Metallica---2-Day-Pass--Good-for-2-4---2-6-Dates-Only--2-4-2027'],['Piano Man','V3 V Theater - Planet Hollywood Resort & Casino','Las Vegas, NV','Thursday','2/4/2027','6:30 PM','7893475','Piano-Man-2-4-2027'],['Shin Lim','Palazzo Theatre At the Venetian Las Vegas','Las Vegas, NV','Thursday','2/4/2027','7:00 PM','7856914','Shin-Lim-2-4-2027'],['Metallica','Sphere','Las Vegas, NV','Thursday','2/4/2027','8:30 PM','7785086','Metallica-2-4-2027'],['Piano Man','V3 V Theater - Planet Hollywood Resort & Casino','Las Vegas, NV','Friday','2/5/2027','6:30 PM','7893476','Piano-Man-2-5-2027'],['Shin Lim','Palazzo Theatre At the Venetian Las Vegas','Las Vegas, NV','Friday','2/5/2027','7:00 PM','7856806','Shin-Lim-2-5-2027']],'february Las Vegas','http://www.ticketnetwork.com/ticket/february-Las-Vegas-events.aspx');