//
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([['Aaron Lewis and The Stateliners','Redding Civic Auditorium','Redding, CA','Wednesday','6/11/2025','7:00 PM','6996553','Aaron-Lewis-and-The-Stateliners-6-11-2025'],['Aaron Lewis and The Stateliners','The Skookum Creek Event Center','Shelton, WA','Thursday','6/12/2025','8:00 PM','7043215','Aaron-Lewis-and-The-Stateliners-6-12-2025'],['Aaron Lewis and The Stateliners','Wine Country Amphitheater','Walla Walla, WA','Friday','6/13/2025','7:00 PM','6996557','Aaron-Lewis-and-The-Stateliners-6-13-2025'],['Aaron Lewis and The Stateliners','General Duffy's Waterhole','Redmond, OR','Thursday','6/19/2025','4:00 PM','7135209','Aaron-Lewis-and-The-Stateliners-6-19-2025'],['Aaron Lewis and The Stateliners','Spokane Live At Spokane Tribe Casino','Airway Heights, WA','Friday','6/20/2025','8:00 PM','7049980','Aaron-Lewis-and-The-Stateliners-6-20-2025'],['Aaron Lewis','Seven Feathers Hotel & Casino','Canyonville, OR','Saturday','6/21/2025','7:00 PM','6999534','Aaron-Lewis-6-21-2025'],['Aaron Lewis and The Stateliners','Turlock Community Theatre','Turlock, CA','Sunday','6/22/2025','7:30 PM','6999187','Aaron-Lewis-and-The-Stateliners-6-22-2025'],['Aaron Lewis and The Stateliners','Dignity Health Theater','Bakersfield, CA','Tuesday','6/24/2025','8:00 PM','6998061','Aaron-Lewis-and-The-Stateliners-6-24-2025'],['Aaron Lewis and The Stateliners','TJ's Corral','Minden, NV','Thursday','6/26/2025','8:00 PM','6999135','Aaron-Lewis-and-The-Stateliners-6-26-2025'],['Aaron Lewis','Concerts In The Park at Viejas Casino & Resort','Alpine, CA','Friday','6/27/2025','8:00 PM','6962049','Aaron-Lewis-6-27-2025']],'Aaron Lewis','https://www.ticketnetwork.com');