//
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([['Cooper Alan','The Vine at Del Lago Resort','Waterloo, NY','Saturday','3/21/2026','8:00 PM','7633164','Cooper-Alan-3-21-2026'],['Cooper Alan','Ryman Auditorium','Nashville, TN','Saturday','3/28/2026','8:00 PM','7505827','Cooper-Alan-3-28-2026'],['Cooper Alan','Lakeland Linder International Airport','Lakeland, FL','Tuesday','4/14/2026','6:00 PM','7582472','Cooper-Alan-4-14-2026'],['2026 Gulf Coast Jam: Post Malone, Chris Stapleton, Riley Green & Keith Urban - 4 Day Pass','Frank Brown Park','Panama City Beach, FL','Thursday','5/28/2026','TBD','7181094','2026-Gulf-Coast-Jam--Post-Malone--Chris-Stapleton--Riley-Green---Keith-Urban---4-Day-Pass-5-28-2026'],['Tailgate N Tallboys Music Festival: Zach Top, Treaty Oak Revival & Jessie Murph - 3 Day Pass','Tailgate N' Tallboys - Normal','Normal, IL','Thursday','6/18/2026','TBD','7503974','Tailgate-N-Tallboys-Music-Festival--Zach-Top--Treaty-Oak-Revival---Jessie-Murph---3-Day-Pass-6-18-2026'],['Tailgate N Tallboys Music Festival: Jessie Murph, BigxThaPlug & Cameron Whitcomb - Saturday','Tailgate N' Tallboys - Normal','Normal, IL','Saturday','6/20/2026','12:00 PM','7537495','Tailgate-N-Tallboys-Music-Festival--Jessie-Murph--BigxThaPlug---Cameron-Whitcomb---Saturday-6-20-2026'],['County Line Country Fest: Scotty McCreery & Cooper Alan - Thursday','Country on the River Festival Grounds','Prairie Du Chien, WI','Thursday','7/30/2026','8:00 AM','7559815','County-Line-Country-Fest--Scotty-McCreery---Cooper-Alan---Thursday-7-30-2026'],['Cooper Alan','Preservation Plaza at Arnolds Park Amusement Park','Arnolds Park, IA','Friday','8/7/2026','7:30 PM','7617995','Cooper-Alan-8-7-2026'],['Cooper Alan','Brown County Fairgrounds - SD','Aberdeen, SD','Wednesday','8/12/2026','8:00 PM','7636503','Cooper-Alan-8-12-2026']],'Cooper Alan','http://www.ticketnetwork.com/en/search/?text=Cooper%20Alan');