//
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([['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'],['The Halluci Nation (A Tribe Called Red)','Starlite Room','Edmonton, Canada','Sunday','11/16/2025','7:00 PM','7465950','The-Halluci-Nation--A-Tribe-Called-Red--11-16-2025'],['Columbus Blue Jackets vs. Montreal Canadiens','Nationwide Arena','Columbus, OH','Monday','11/17/2025','7:30 PM','7274654','Columbus-Blue-Jackets-vs--Montreal-Canadiens-11-17-2025'],['Wisconsin Herd vs. Grand Rapids Gold','Oshkosh Arena','Oshkosh, WI','Wednesday','11/19/2025','7:00 PM','7382216','Wisconsin-Herd-vs--Grand-Rapids-Gold-11-19-2025'],['Queen Nation','The Venue At Thunder Valley Casino','Lincoln, CA','Thursday','11/20/2025','7:30 PM','6855571','Queen-Nation-11-20-2025'],['Floyd Nation','Saenger Theatre - FL','Pensacola, FL','Thursday','11/20/2025','8:00 PM','7398910','Floyd-Nation-11-20-2025'],['Wisconsin Herd vs. Sioux Falls Skyforce','Oshkosh Arena','Oshkosh, WI','Friday','11/21/2025','8:00 PM','7382218','Wisconsin-Herd-vs--Sioux-Falls-Skyforce-11-21-2025'],['Floyd Nation','Ruth Eckerd Hall','Clearwater, FL','Saturday','11/22/2025','8:00 PM','7068565','Floyd-Nation-11-22-2025'],['Wisconsin Herd vs. Sioux Falls Skyforce','Oshkosh Arena','Oshkosh, WI','Saturday','11/22/2025','8:00 PM','7382219','Wisconsin-Herd-vs--Sioux-Falls-Skyforce-11-22-2025'],['Drum Nation','Sonia','Cambridge, MA','Wednesday','11/26/2025','7:00 PM','7498558','Drum-Nation-11-26-2025']],'Live Nation','https://www.ticketnetwork.com');