//
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([['Godfrey Townsend - Eric Clapton Tribute','Sellersville Theater 1894','Sellersville, PA','Sunday','1/4/2026','8:00 PM','7522224','Godfrey-Townsend---Eric-Clapton-Tribute-1-4-2026'],['Journeyman - Tribute to Eric Clapton','The Plaza Live','Orlando, FL','Thursday','1/22/2026','8:00 PM','7376210','Journeyman---Tribute-to-Eric-Clapton-1-22-2026'],['The Bell Bottom Blues Band - Eric Clapton Tribute','The Vogel at the Count Basie Center for the Arts','Red Bank, NJ','Saturday','1/31/2026','7:30 PM','7189638','The-Bell-Bottom-Blues-Band---Eric-Clapton-Tribute-1-31-2026'],['Something Wonderful Tonight - Tribute to Eric Clapton & George Harrison','The Historic Theater at The Music Hall','Portsmouth, NH','Friday','2/13/2026','8:00 PM','7600269','Something-Wonderful-Tonight---Tribute-to-Eric-Clapton---George-Harrison-2-13-2026'],['Journeyman - Tribute to Eric Clapton','Ymca Boulton Center For The Performing Arts','Bay Shore, NY','Friday','2/20/2026','8:00 PM','7494443','Journeyman---Tribute-to-Eric-Clapton-2-20-2026'],['Something Wonderful Tonight - Tribute to Eric Clapton & George Harrison','Garde Arts Center','New London, CT','Saturday','2/28/2026','8:00 PM','7527646','Something-Wonderful-Tonight---Tribute-to-Eric-Clapton---George-Harrison-2-28-2026'],['Cream of Clapton - Eric Clapton Tribute','Nancy and David Bilheimer Capitol Theatre','Clearwater, FL','Saturday','4/4/2026','8:00 PM','7501924','Cream-of-Clapton---Eric-Clapton-Tribute-4-4-2026'],['Eric Clapton','Ziggo Dome','Amsterdam, Netherlands','Friday','4/24/2026','8:00 PM','7576045','Eric-Clapton-4-24-2026'],['Journeyman - Tribute to Eric Clapton','Crest Theatre - Sacramento','Sacramento, CA','Wednesday','8/8/2074','8:00 PM','6526989','Journeyman---Tribute-to-Eric-Clapton-8-8-2074']],'eric clapton','http://www.ticketnetwork.com/en/search/?text=eric%20clapton');