//
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 dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
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 newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-03A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['National Route 66 Centennial Kickoff: Little Big Town, Chris Janson, Gary Levox, & Gretchen Wilson','Great Southern Bank Arena','Springfield, MO','Thursday','4/30/2026','5:15 PM','7711839','National-Route-66-Centennial-Kickoff--Little-Big-Town--Chris-Janson--Gary-Levox----Gretchen-Wilson-4-30-2026'],['Boots & Brews Country Music Festival: Cole Swindell, Gretchen Wilson, & Jayden Secor','Ventura County Fairgrounds','Ventura, CA','Saturday','6/13/2026','2:00 PM','7624740','Boots---Brews-Country-Music-Festival--Cole-Swindell--Gretchen-Wilson----Jayden-Secor-6-13-2026'],['Boots & Brews Country Music Festival: Jordan Davis & Gretchen Wilson','Morgan Hill Outdoor Sports Center','Morgan Hill, CA','Saturday','6/20/2026','3:00 PM','7624739','Boots---Brews-Country-Music-Festival--Jordan-Davis---Gretchen-Wilson-6-20-2026'],['Gretchen Wilson & Drew Baldridge','Washington County Fairgrounds - IL','Nashville, IL','Friday','7/10/2026','7:00 PM','7604367','Gretchen-Wilson---Drew-Baldridge-7-10-2026'],['Gretchen Wilson','Billy Bobs','Fort Worth, TX','Friday','8/7/2026','10:00 PM','7854166','Gretchen-Wilson-8-7-2026'],['Gretchen Wilson','The Show - Agua Caliente Casino','Rancho Mirage, CA','Friday','8/28/2026','8:00 PM','7784281','Gretchen-Wilson-8-28-2026']],'Gretchen Wilson','http://www.ticketnetwork.com/en/search/?text=Gretchen%20Wilson');