//
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([['Skynyrd Nation - A Tribute to Lynyrd Skynyrd','Goldfield Trading Post - Roseville','Roseville, CA','Friday','2/6/2026','7:00 PM','7632931','Skynyrd-Nation---A-Tribute-to-Lynyrd-Skynyrd-2-6-2026'],['World's Toughest Rodeo','Nationwide Arena','Columbus, OH','Saturday','2/7/2026','7:30 PM','7493222','World-s-Toughest-Rodeo-2-7-2026'],['Van Halen Nation','Levoy Theatre','Millville, NJ','Saturday','2/7/2026','8:00 PM','7510041','Van-Halen-Nation-2-7-2026'],['American Pop','Legends Casino Event Center','Toppenish, WA','Saturday','2/7/2026','8:00 PM','7549122','American-Pop-2-7-2026'],['Wisconsin Herd vs. Birmingham Squadron','Oshkosh Arena','Oshkosh, WI','Monday','2/9/2026','6:30 PM','7382242','Wisconsin-Herd-vs--Birmingham-Squadron-2-9-2026'],['Wisconsin Herd vs. Birmingham Squadron','Oshkosh Arena','Oshkosh, WI','Tuesday','2/10/2026','6:00 PM','7382243','Wisconsin-Herd-vs--Birmingham-Squadron-2-10-2026'],['Swift Nation - Tribute to Taylor Swift','Earl Smith Strand Theatre','Marietta, GA','Friday','2/13/2026','7:30 PM','7683974','Swift-Nation---Tribute-to-Taylor-Swift-2-13-2026'],['Billy Nation - Billy Joel Tribute','Hofmann Theatre at Lesher Center for the Arts','Walnut Creek, CA','Friday','2/13/2026','7:30 PM','7477204','Billy-Nation---Billy-Joel-Tribute-2-13-2026'],['Columbus Fury vs. Dallas Pulse','Nationwide Arena','Columbus, OH','Saturday','2/14/2026','7:00 PM','7580040','Columbus-Fury-vs--Dallas-Pulse-2-14-2026'],['Billy Nation - Billy Joel Tribute','State Theatre Modesto','Modesto, CA','Saturday','2/14/2026','7:00 PM','7469987','Billy-Nation---Billy-Joel-Tribute-2-14-2026']],'Live Nation','https://www.ticketnetwork.com');