//
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([['America's 250th - Our Nation's Celebration','Blue Gate Music Hall','Shipshewana, IN','Friday','6/19/2026','7:00 PM','7578890','America-s-250th---Our-Nation-s-Celebration-6-19-2026'],['America's 250th - Our Nation's Celebration','Blue Gate Music Hall','Shipshewana, IN','Saturday','6/20/2026','7:00 PM','7578891','America-s-250th---Our-Nation-s-Celebration-6-20-2026'],['Claypool Gold: Primus, Les Claypool's Frog Brigade & The Claypool Lennon Delirium','Synovus Bank Amphitheater at Chastain Park','Atlanta, GA','Saturday','6/20/2026','7:00 PM','7690466','Claypool-Gold--Primus--Les-Claypool-s-Frog-Brigade---The-Claypool-Lennon-Delirium-6-20-2026'],['Chicago Truck Nation','The Dirt Oval at Route 66 Raceway','Elwood, IL','Sunday','6/21/2026','1:00 PM','7923765','Chicago-Truck-Nation-6-21-2026'],['Hilary Duff, La Roux & Jade LeMac','MidFlorida Credit Union Amphitheatre At The Florida State Fairgrounds','Tampa, FL','Tuesday','6/23/2026','7:00 PM','7734956','Hilary-Duff--La-Roux---Jade-LeMac-6-23-2026'],['Rodney Carrington','Legends Casino Event Center','Toppenish, WA','Friday','6/26/2026','8:00 PM','7670996','Rodney-Carrington-6-26-2026'],['Off Campus Night - A Briar Nation Dance Party','The Federal Theatre - Denver','Denver, CO','Friday','6/26/2026','8:30 PM','8059521','Off-Campus-Night---A-Briar-Nation-Dance-Party-6-26-2026'],['Off Campus Night - A Briar Nation Dance Party','White Oak Music Hall - Downstairs','Houston, TX','Friday','6/26/2026','9:00 PM','8016162','Off-Campus-Night---A-Briar-Nation-Dance-Party-6-26-2026'],['Palm Tree Music Festival','Shinnecock Nation - Southampton','Southampton, NY','Saturday','6/27/2026','3:00 PM','7738198','Palm-Tree-Music-Festival-6-27-2026'],['80z Nation','Blackmon Amphitheatre','Mount Airy, NC','Saturday','6/27/2026','7:30 PM','7479938','80z-Nation-6-27-2026']],'"Live Nation"','https://www.ticketnetwork.com');