//
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([['Kool and The Gang','The Carson Center','Paducah, KY','Saturday','12/20/2025','7:30 PM','7532009','Kool-and-The-Gang-12-20-2025'],['Ladies Night - Tribute to Kool & The Gang','Sam's Town Live!','Las Vegas, NV','Wednesday','12/31/2025','10:00 PM','7550300','Ladies-Night---Tribute-to-Kool---The-Gang-12-31-2025'],['Kool and The Gang','Ovation Hall at Ocean Resort Casino ','Atlantic City, NJ','Friday','2/20/2026','9:00 PM','7338282','Kool-and-The-Gang-2-20-2026'],['Hollywood Swinging - Tribute to Kool and the Gang','Nathan Manilow Theatre in Freedom Hall','Park Forest, IL','Saturday','2/28/2026','7:30 PM','7394692','Hollywood-Swinging---Tribute-to-Kool-and-the-Gang-2-28-2026'],['Kool and The Gang','Roanoke Island Festival Park','Manteo, NC','Saturday','6/13/2026','6:30 PM','7093707','Kool-and-The-Gang-6-13-2026']],'kool and the gang','http://www.ticketnetwork.com/en/search/?text=kool%20and%20the%20gang');