//
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([['Hotel California: A Salute To The Eagles','Pepsi Amphitheatre at Fort Tuthill','Flagstaff, AZ','Thursday','7/3/2025','7:00 PM','7094981','Hotel-California--A-Salute-To-The-Eagles-7-3-2025'],['Hotel California: A Salute To The Eagles','Harrahs Laughlin Fiesta Showroom','Laughlin, NV','Friday','7/4/2025','7:00 PM','7123151','Hotel-California--A-Salute-To-The-Eagles-7-4-2025'],['Hotel California: A Salute To The Eagles','Harrahs Laughlin Fiesta Showroom','Laughlin, NV','Saturday','7/5/2025','7:00 PM','7123124','Hotel-California--A-Salute-To-The-Eagles-7-5-2025'],['7 Bridges - Eagles Tribute Band','Hill Performance Hall at Eisemann Center','Richardson, TX','Saturday','7/5/2025','7:30 PM','7082335','7-Bridges---Eagles-Tribute-Band-7-5-2025'],['Family Traditions - Tribute to Hank Williams Jr.','Eagles Theatre At Honeywell Center','Wabash, IN','Friday','7/11/2025','7:30 PM','7011411','Family-Traditions---Tribute-to-Hank-Williams-Jr--7-11-2025'],['Desperado - Tribute to The Eagles','Scherr Forum Theatre At Bank of America Performing Arts Center','Thousand Oaks, CA','Friday','7/11/2025','7:30 PM','7089886','Desperado---Tribute-to-The-Eagles-7-11-2025'],['Already Gone - A Tribute to The Eagles','Stafford Centre','Stafford, TX','Saturday','7/12/2025','7:00 PM','7048546','Already-Gone---A-Tribute-to-The-Eagles-7-12-2025'],['Epic Eagles - Tribute to The Eagles','Cheboygan Opera House','Cheboygan, MI','Saturday','7/12/2025','7:30 PM','7202451','Epic-Eagles---Tribute-to-The-Eagles-7-12-2025'],['Eaglemania - Tribute To The Eagles','Plain Township Amphitheater','Canton, OH','Thursday','7/17/2025','7:30 PM','7201957','Eaglemania---Tribute-To-The-Eagles-7-17-2025'],['Megan Moroney','Eagles Ballroom','Milwaukee, WI','Thursday','7/17/2025','8:00 PM','6698369','Megan-Moroney-7-17-2025']],'The Eagles','https://www.ticketnetwork.com');