//
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 t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
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;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-04A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Floyd Nation Experience - Pink Floyd Tribute','The Tracy Performing Arts Center','Sumterville, FL','Thursday','11/13/2025','6:00 PM','7384244','Floyd-Nation-Experience---Pink-Floyd-Tribute-11-13-2025'],['Columbus Blue Jackets vs. Edmonton Oilers','Nationwide Arena','Columbus, OH','Thursday','11/13/2025','7:00 PM','7274652','Columbus-Blue-Jackets-vs--Edmonton-Oilers-11-13-2025'],['The Halluci Nation (A Tribe Called Red)','Revelry Food and Music Hub','Kelowna, Canada','Thursday','11/13/2025','8:00 PM','7535468','The-Halluci-Nation--A-Tribe-Called-Red--11-13-2025'],['Floyd Nation','Lillian S. Wells Hall at The Parker','Fort Lauderdale, FL','Friday','11/14/2025','7:30 PM','7398909','Floyd-Nation-11-14-2025'],['Columbus Blue Jackets vs. New York Rangers','Nationwide Arena','Columbus, OH','Saturday','11/15/2025','7:00 PM','7274653','Columbus-Blue-Jackets-vs--New-York-Rangers-11-15-2025'],['The Halluci Nation (A Tribe Called Red)','Commonwealth Bar','Calgary, Canada','Saturday','11/15/2025','7:00 PM','7467670','The-Halluci-Nation--A-Tribe-Called-Red--11-15-2025'],['Swift Nation - Tribute to Taylor Swift','Tropicana Showroom at Tropicana Casino - NJ','Atlantic City, NJ','Saturday','11/15/2025','8:00 PM','7245310','Swift-Nation---Tribute-to-Taylor-Swift-11-15-2025'],['Floyd Nation','Seminole Casino Center - Immokalee','Immokalee, FL','Saturday','11/15/2025','8:00 PM','7549794','Floyd-Nation-11-15-2025'],['Wheel Of Fortune Live!','Legends Casino Event Center','Toppenish, WA','Saturday','11/15/2025','8:00 PM','7164234','Wheel-Of-Fortune-Live--11-15-2025'],['Wheel Of Fortune Live!','Legends Casino Event Center','Toppenish, WA','Sunday','11/16/2025','2:00 PM','7164260','Wheel-Of-Fortune-Live--11-16-2025']],'Live Nation','https://www.ticketnetwork.com');