//
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([['OPRY 100: Garth Brooks, Trisha Yearwood, Reba McEntire, & Carrie Underwood','Grand Ole Opry House','Nashville, TN','Wednesday','3/19/2025','7:00 PM','6963255','OPRY-100--Garth-Brooks--Trisha-Yearwood--Reba-McEntire----Carrie-Underwood-3-19-2025'],['Legends of Country - Tributes to Garth Brooks, Shania Twain, Reba McEntire & Kenny Rogers','Mccallum Theatre','Palm Desert, CA','Tuesday','4/15/2025','7:00 PM','6736161','Legends-of-Country---Tributes-to-Garth-Brooks--Shania-Twain--Reba-McEntire---Kenny-Rogers-4-15-2025'],['Legends of Country - Tributes to Garth Brooks, Shania Twain, Reba McEntire & Kenny Rogers','Mccallum Theatre','Palm Desert, CA','Wednesday','4/16/2025','7:00 PM','6736162','Legends-of-Country---Tributes-to-Garth-Brooks--Shania-Twain--Reba-McEntire---Kenny-Rogers-4-16-2025'],['The World According to Garth - Garth Brooks Tribute','Masquerade Dance Theater at Ames Center','Burnsville, MN','Saturday','4/26/2025','7:30 PM','6992717','The-World-According-to-Garth---Garth-Brooks-Tribute-4-26-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']],'garth brooks','http://www.ticketnetwork.com/en/search/?text=garth%20brooks');