//
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-03A
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([['Taylor Tomlinson','Beacon Theatre - NY','New York, NY','Friday','8/1/2025','7:00 PM','6984235','Taylor-Tomlinson-8-1-2025'],['Taylor Tomlinson','Beacon Theatre - NY','New York, NY','Saturday','8/2/2025','4:00 PM','7061969','Taylor-Tomlinson-8-2-2025'],['Taylor Tomlinson','Beacon Theatre - NY','New York, NY','Saturday','8/2/2025','8:00 PM','7009326','Taylor-Tomlinson-8-2-2025'],['Chicago - The Band','Beacon Theatre - NY','New York, NY','Wednesday','8/6/2025','8:00 PM','6927764','Chicago---The-Band-8-6-2025'],['K-Love Live: TobyMac, Jeremy Camp. & Katy Nichole','Beacon Theatre - NY','New York, NY','Friday','8/8/2025','7:30 PM','6868592','K-Love-Live--TobyMac--Jeremy-Camp----Katy-Nichole-8-8-2025'],['K-Love Live: TobyMac, We Are Messengers, & Seph Schlueter','Beacon Theatre - NY','New York, NY','Saturday','8/9/2025','7:30 PM','6868593','K-Love-Live--TobyMac--We-Are-Messengers----Seph-Schlueter-8-9-2025'],['Jackson Browne','Beacon Theatre - NY','New York, NY','Tuesday','8/12/2025','8:00 PM','7081247','Jackson-Browne-8-12-2025'],['Jackson Browne','Beacon Theatre - NY','New York, NY','Wednesday','8/13/2025','8:00 PM','7081248','Jackson-Browne-8-13-2025'],['Jackson Browne','Beacon Theatre - NY','New York, NY','Friday','8/15/2025','8:00 PM','7081249','Jackson-Browne-8-15-2025'],['Jackson Browne','Beacon Theatre - NY','New York, NY','Saturday','8/16/2025','8:00 PM','7081250','Jackson-Browne-8-16-2025'],['Good Trouble & Nick Kyrgios','Beacon Theatre - NY','New York, NY','Monday','8/18/2025','7:30 PM','7146017','Good-Trouble---Nick-Kyrgios-8-18-2025']],'beacon ny concerts august','http://www.ticketnetwork.com/en/search/?text=beacon%20ny%20concerts%20august');