//
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([['Face Value - A Tribute to Phil Collins','Palace Theatre - Crossville','Crossville, TN','Friday','7/17/2026','7:00 PM','7884949','Face-Value---A-Tribute-to-Phil-Collins-7-17-2026'],['Face 2 Face: Billy Joel & Elton John Tribute','South Shore Music Circus','Cohasset, MA','Thursday','8/13/2026','8:00 PM','7678458','Face-2-Face--Billy-Joel---Elton-John-Tribute-8-13-2026'],['Face 2 Face: Billy Joel & Elton John Tribute','Indian Ranch','Webster, MA','Friday','8/14/2026','7:00 PM','7674273','Face-2-Face--Billy-Joel---Elton-John-Tribute-8-14-2026'],['Face 2 Face: Billy Joel & Elton John Tribute','Hampton Beach Casino Ballroom','Hampton, NH','Saturday','8/15/2026','8:00 PM','7613539','Face-2-Face--Billy-Joel---Elton-John-Tribute-8-15-2026'],['Face 2 Face: Billy Joel & Elton John Tribute','Cape Cod Melody Tent','Hyannis, MA','Sunday','8/16/2026','8:00 PM','7683874','Face-2-Face--Billy-Joel---Elton-John-Tribute-8-16-2026'],['Yellow Brick Joel - The Face to Face Tribute','Keswick Theatre','Glenside, PA','Friday','8/21/2026','8:00 PM','7800719','Yellow-Brick-Joel---The-Face-to-Face-Tribute-8-21-2026'],['Face 2 Face: Billy Joel & Elton John Tribute','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Friday','9/11/2026','7:30 PM','7786014','Face-2-Face--Billy-Joel---Elton-John-Tribute-9-11-2026'],['Face 2 Face: Billy Joel & Elton John Tribute','Rialto Square Theatre','Joliet, IL','Friday','10/9/2026','7:30 PM','7794207','Face-2-Face--Billy-Joel---Elton-John-Tribute-10-9-2026'],['Face 2 Face: Billy Joel & Elton John Tribute','George Van Dusen Theatre At North Shore Center For The Performing Arts','Skokie, IL','Saturday','10/10/2026','7:30 PM','7794134','Face-2-Face--Billy-Joel---Elton-John-Tribute-10-10-2026'],['Yellow Brick Joel - The Face to Face Tribute','Ludlow Garage','Cincinnati, OH','Friday','10/23/2026','7:30 PM','7748158','Yellow-Brick-Joel---The-Face-to-Face-Tribute-10-23-2026'],['Yellow Brick Joel - The Face to Face Tribute','Edward W. Powers Auditorium At DeYor PAC','Youngstown, OH','Saturday','10/24/2026','8:00 PM','7003322','Yellow-Brick-Joel---The-Face-to-Face-Tribute-10-24-2026'],['Face 2 Face: Billy Joel & Elton John Tribute','Clyde Theatre','Fort Wayne, IN','Saturday','11/28/2026','8:00 PM','7599101','Face-2-Face--Billy-Joel---Elton-John-Tribute-11-28-2026']],'face to face','http://www.ticketnetwork.com/en/search/?text=face%20to%20face');