//
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-02A
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([['Shawn Gerhard - Garth Brooks Tribute','Palos Verdes Performing Arts - Norris Theatre','Palos Verdes Peninsula, CA','Saturday','7/26/2025','7:00 PM','7196400','Shawn-Gerhard---Garth-Brooks-Tribute-7-26-2025'],['No Fences - Tribute to Garth Brooks','Madlife Stage & Studios','Woodstock, GA','Saturday','8/16/2025','6:30 PM','7202307','No-Fences---Tribute-to-Garth-Brooks-8-16-2025'],['No Fences - Tribute to Garth Brooks','Madlife Stage & Studios','Woodstock, GA','Saturday','8/16/2025','9:00 PM','7202273','No-Fences---Tribute-to-Garth-Brooks-8-16-2025'],['No Fences - Tribute to Garth Brooks','Wheeling Island Showroom','Wheeling, WV','Saturday','8/30/2025','8:00 PM','7141213','No-Fences---Tribute-to-Garth-Brooks-8-30-2025'],['Garth Live - Tribute to Garth Brooks','Dallas Arboretum','Dallas, TX','Thursday','9/11/2025','7:00 PM','6989467','Garth-Live---Tribute-to-Garth-Brooks-9-11-2025'],['Formula 1: US Grand Prix: Garth Brooks - Saturday','Circuit of The Americas','Austin, TX','Saturday','10/18/2025','1:00 PM','6653771','Formula-1--US-Grand-Prix--Garth-Brooks---Saturday-10-18-2025'],['Garth Live - Tribute to Garth Brooks','Prescott Elks Theater at Prescott Elks Performing Arts Center','Prescott, AZ','Friday','11/7/2025','7:00 PM','7105172','Garth-Live---Tribute-to-Garth-Brooks-11-7-2025'],['Country Boys - Tribute to Alan Jackson, Garth Brooks, Brad Paisley & George Strait','Imperial Theatre - Saint John','Saint John, Canada','Saturday','12/6/2025','7:30 PM','7187294','Country-Boys---Tribute-to-Alan-Jackson--Garth-Brooks--Brad-Paisley---George-Strait-12-6-2025'],['No Fences - Tribute to Garth Brooks','Lexington Village Theatre','Lexington, MI','Saturday','12/20/2025','8:00 PM','7184652','No-Fences---Tribute-to-Garth-Brooks-12-20-2025'],['Garth Live - Tribute to Garth Brooks','Historic Yuma Theatre','Yuma, AZ','Friday','3/13/2026','7:00 PM','7099564','Garth-Live---Tribute-to-Garth-Brooks-3-13-2026'],['Garth Guy - Garth Brooks Tribute','The Canyon Santa Clarita','Valencia, CA','Thursday','7/17/2070','TBD','4318219','Garth-Guy---Garth-Brooks-Tribute-7-17-2070']],'Garth Brooks','http://www.ticketnetwork.com/en/search/?text=Garth%20Brooks');