//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Hometown Holiday: Russell Dickerson, LoCash & Drew Parker','Celebrity Theatre - AZ','Phoenix, AZ','Saturday','11/23/2024','8:00 PM','6712162','Hometown-Holiday--Russell-Dickerson--LoCash---Drew-Parker-11-23-2024'],['Thomas Rhett, Riley Green & Russell Dickerson','The Eastern - GA','Atlanta, GA','Wednesday','12/4/2024','7:30 PM','6732855','Thomas-Rhett--Riley-Green---Russell-Dickerson-12-4-2024'],['Big 104.7 10th Birthday Bash: Russell Dickerson & LoCash','Roxian Theatre','McKees Rocks, PA','Thursday','12/5/2024','8:00 PM','6750058','Big-104-7-10th-Birthday-Bash--Russell-Dickerson---LoCash-12-5-2024'],['Jinglefest: Russell Dickerson, LoCash & Ashley Cooke','Family Arena','Saint Charles, MO','Saturday','12/7/2024','6:45 PM','6611020','Jinglefest--Russell-Dickerson--LoCash---Ashley-Cooke-12-7-2024'],['Russell Dickerson','The Pinnacle at Symphony Place','Nashville, TN','Friday','3/14/2025','8:00 PM','6711164','Russell-Dickerson-3-14-2025'],['Russell Dickerson','Coca-Cola Roxy','Atlanta, GA','Saturday','3/15/2025','8:00 PM','6696095','Russell-Dickerson-3-15-2025'],['Russell Dickerson','Joe's Live','Rosemont, IL','Friday','3/21/2025','8:00 PM','6696102','Russell-Dickerson-3-21-2025'],['Russell Dickerson','The Fillmore - Minneapolis','Minneapolis, MN','Saturday','3/22/2025','7:00 PM','6696101','Russell-Dickerson-3-22-2025'],['Russell Dickerson','The Sylvee - WI','Madison, WI','Friday','3/28/2025','8:00 PM','6696099','Russell-Dickerson-3-28-2025'],['Russell Dickerson','GLC Live at 20 Monroe','Grand Rapids, MI','Saturday','3/29/2025','8:00 PM','6696097','Russell-Dickerson-3-29-2025']],'"Russell Dickerson"','https://www.ticketnetwork.com');