//
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-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Christmas Jubilee','Rudy Theatre','Selma, NC','Monday','12/1/2025','12:45 PM','6933330','Christmas-Jubilee-12-1-2025'],['Radio City Christmas Spectacular','Radio City Music Hall','New York, NY','Monday','12/1/2025','2:00 PM','7045772','Radio-City-Christmas-Spectacular-12-1-2025'],['Christmas With The Rat Pack','Wichita Theatre','Wichita Falls, TX','Monday','12/1/2025','2:00 PM','7488308','Christmas-With-The-Rat-Pack-12-1-2025'],['Fallsview Casino's Christmas On Ice','Avalon Theatre At Niagara Fallsview Casino Resort','Niagara Falls, Canada','Monday','12/1/2025','3:00 PM','7277073','Fallsview-Casino-s-Christmas-On-Ice-12-1-2025'],['Radio City Christmas Spectacular','Radio City Music Hall','New York, NY','Monday','12/1/2025','5:00 PM','7045773','Radio-City-Christmas-Spectacular-12-1-2025'],['Lifehouse Performing Arts Academy: The Nutcracker','Mid-Valley Performing Arts Center','Taylorsville, UT','Monday','12/1/2025','5:00 PM','7541424','Lifehouse-Performing-Arts-Academy--The-Nutcracker-12-1-2025'],['A Charlie Brown Christmas','Flynn Center for the Performing Arts','Burlington, VT','Monday','12/1/2025','6:30 PM','7290970','A-Charlie-Brown-Christmas-12-1-2025'],['South Carolina Ballet: The Nutcracker','Charleston Music Hall','Charleston, SC','Monday','12/1/2025','7:00 PM','6972022','South-Carolina-Ballet--The-Nutcracker-12-1-2025'],['The Christmas Candy Caper','Blue Gate Music Hall','Shipshewana, IN','Monday','12/1/2025','7:00 PM','7118221','The-Christmas-Candy-Caper-12-1-2025'],['Christmas Together: Amy Grant, Michael W. Smith & CeCe Winans','Fox Theatre - Detroit','Detroit, MI','Monday','12/1/2025','7:00 PM','7101264','Christmas-Together--Amy-Grant--Michael-W--Smith---CeCe-Winans-12-1-2025']],'"Christmas"','https://www.ticketnetwork.com');