//
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([['Big and Rich Featuring Gretchen Wilson','Sandia Casino Amphitheater','Albuquerque, NM','Friday','5/23/2025','8:00 PM','7032027','Big-and-Rich-Featuring-Gretchen-Wilson-5-23-2025'],['Big and Rich','Laughlin Event Center','Laughlin, NV','Saturday','5/24/2025','7:00 PM','6957521','Big-and-Rich-5-24-2025'],['Big and Rich','All-Star Amphitheatre At Wild Adventures Theme Park','Valdosta, GA','Saturday','6/7/2025','8:00 PM','7029610','Big-and-Rich-6-7-2025'],['Red Wine And Brew Festival: Big and Rich, Frank Ray & Shy Carter - Saturday','The Summit - La Porte','La Porte, IN','Saturday','6/28/2025','4:00 PM','7001551','Red-Wine-And-Brew-Festival--Big-and-Rich--Frank-Ray---Shy-Carter---Saturday-6-28-2025'],['Old Washington Music Fest: Big and Rich, A Thousand Horses, & Davisson Brothers Band - Friday','Guernsey County Fairgrounds','Lore City, OH','Friday','7/18/2025','12:00 PM','6876555','Old-Washington-Music-Fest--Big-and-Rich--A-Thousand-Horses----Davisson-Brothers-Band---Friday-7-18-2025'],['Big and Rich','Horseshoe Amphitheatre','Russellton, PA','Saturday','7/19/2025','7:30 PM','7115192','Big-and-Rich-7-19-2025'],['Big and Rich','Delaware State Fairgrounds','Harrington, DE','Saturday','7/26/2025','7:30 PM','7016675','Big-and-Rich-7-26-2025'],['Big and Rich','Mercer County Fair','Celina, OH','Friday','8/8/2025','8:00 PM','6834528','Big-and-Rich-8-8-2025'],['Concert In The Corn: Big & Rich, Gabby Barrett - Saturday','Concert Grounds at White River AG Products','Mason, WI','Saturday','8/23/2025','10:00 AM','6969142','Concert-In-The-Corn--Big---Rich--Gabby-Barrett---Saturday-8-23-2025'],['Big and Rich','Sweetland Amphitheatre at Boyd Park','Lagrange, GA','Friday','9/12/2025','8:00 PM','7084371','Big-and-Rich-9-12-2025']],'"big and rich"','https://www.ticketnetwork.com');