//
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([['Mat Franco','Mat Franco Theater at the LINQ','Las Vegas, NV','Friday','1/1/2027','7:00 PM','7741189','Mat-Franco-1-1-2027'],['Mat Franco','Mat Franco Theater at the LINQ','Las Vegas, NV','Friday','1/1/2027','9:30 PM','7741204','Mat-Franco-1-1-2027'],['Mat Franco','Mat Franco Theater at the LINQ','Las Vegas, NV','Saturday','1/2/2027','7:00 PM','7741171','Mat-Franco-1-2-2027'],['Mat Franco','Mat Franco Theater at the LINQ','Las Vegas, NV','Saturday','1/2/2027','9:30 PM','7741154','Mat-Franco-1-2-2027'],['The Outsiders','Reynolds Hall at The Smith Center','Las Vegas, NV','Tuesday','1/19/2027','7:30 PM','7731506','The-Outsiders-1-19-2027'],['The Outsiders','Reynolds Hall at The Smith Center','Las Vegas, NV','Wednesday','1/20/2027','7:30 PM','7731507','The-Outsiders-1-20-2027'],['The Outsiders','Reynolds Hall at The Smith Center','Las Vegas, NV','Thursday','1/21/2027','7:30 PM','7731508','The-Outsiders-1-21-2027'],['The Outsiders','Reynolds Hall at The Smith Center','Las Vegas, NV','Friday','1/22/2027','7:30 PM','7731509','The-Outsiders-1-22-2027'],['The Outsiders','Reynolds Hall at The Smith Center','Las Vegas, NV','Saturday','1/23/2027','2:00 PM','7731511','The-Outsiders-1-23-2027'],['The Outsiders','Reynolds Hall at The Smith Center','Las Vegas, NV','Saturday','1/23/2027','7:30 PM','7731510','The-Outsiders-1-23-2027'],['The Outsiders','Reynolds Hall at The Smith Center','Las Vegas, NV','Sunday','1/24/2027','2:00 PM','7731512','The-Outsiders-1-24-2027'],['The Outsiders','Reynolds Hall at The Smith Center','Las Vegas, NV','Sunday','1/24/2027','7:30 PM','7731514','The-Outsiders-1-24-2027'],['College Football Playoff National Championship','Allegiant Stadium','Las Vegas, NV','Monday','1/25/2027','TBD','7689099','College-Football-Playoff-National-Championship-1-25-2027']],'january las vegas','http://www.ticketnetwork.com/ticket/january-las-vegas-events.aspx');