//
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-01A
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([['Florida Strawberry Festival: Reba McEntire','Florida Strawberry Festival Grounds','Plant City, FL','Friday','2/28/2025','7:30 PM','6868666','Florida-Strawberry-Festival--Reba-McEntire-2-28-2025'],['PARKING: Houston Livestock Show And Rodeo','NRG Stadium Parking Lots','Houston, TX','Tuesday','3/4/2025','TBD','6530919','PARKING--Houston-Livestock-Show-And-Rodeo-3-4-2025'],['Houston Livestock Show And Rodeo: Reba McEntire','NRG Stadium','Houston, TX','Tuesday','3/4/2025','6:45 PM','6359444','Houston-Livestock-Show-And-Rodeo--Reba-McEntire-3-4-2025'],['Reba McEntire','Choctaw Casino & Resort - Durant','Durant, OK','Friday','3/7/2025','8:00 PM','6859711','Reba-McEntire-3-7-2025'],['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'],['Reba McEntire','Yaamava Theater at Yaamava Resort & Casino','Highland, CA','Thursday','3/20/2025','8:00 PM','6856542','Reba-McEntire-3-20-2025'],['Reba McEntire','The Venue At Thunder Valley Casino','Lincoln, CA','Friday','3/21/2025','8:00 PM','6838789','Reba-McEntire-3-21-2025'],['Reba McEntire','OLG Stage At Niagara Fallsview Casino Resort','Niagara Falls, Canada','Thursday','3/27/2025','8:30 PM','6861963','Reba-McEntire-3-27-2025'],['Reba McEntire','Mohegan Sun Arena - CT','Uncasville, CT','Friday','3/28/2025','8:00 PM','6885921','Reba-McEntire-3-28-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']],'Reba McEntire','http://www.ticketnetwork.com/en/search/?text=Reba%20McEntire');