//
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-02A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/WidgetStyle9.css');
TN_Widget.CreateTable([['Jabbawockeez','Jabbawockeez Theater At The MGM Grand','Las Vegas, NV','Monday','2/1/2027','5:30 PM','8041177','Jabbawockeez-2-1-2027'],['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'],['Absinthe','Spiegeltent at Caesars Palace','Las Vegas, NV','Monday','2/1/2027','7:00 PM','7991639','Absinthe-2-1-2027'],['V - The Ultimate Variety Show','V1 V Theater - Planet Hollywood Resort & Casino','Las Vegas, NV','Monday','2/1/2027','7:00 PM','7893174','V---The-Ultimate-Variety-Show-2-1-2027'],['Jabbawockeez','Jabbawockeez Theater At The MGM Grand','Las Vegas, NV','Monday','2/1/2027','8:00 PM','8041216','Jabbawockeez-2-1-2027'],['Absinthe','Spiegeltent at Caesars Palace','Las Vegas, NV','Monday','2/1/2027','9:00 PM','7991548','Absinthe-2-1-2027'],['Popovich Comedy Pet Theater','V1 V Theater - Planet Hollywood Resort & Casino','Las Vegas, NV','Tuesday','2/2/2027','2:30 PM','8049351','Popovich-Comedy-Pet-Theater-2-2-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'],['Absinthe','Spiegeltent at Caesars Palace','Las Vegas, NV','Tuesday','2/2/2027','7:00 PM','7991522','Absinthe-2-2-2027'],['V - The Ultimate Variety Show','V1 V Theater - Planet Hollywood Resort & Casino','Las Vegas, NV','Tuesday','2/2/2027','7:00 PM','7893175','V---The-Ultimate-Variety-Show-2-2-2027']],'february Las Vegas','http://www.ticketnetwork.com/ticket/february-Las-Vegas-events.aspx');