//
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([['The B-52s & Devo','Budweiser Stage - Toronto','Toronto, Canada','Wednesday','9/24/2025','7:00 PM','7216302','The-B-52s---Devo-9-24-2025'],['The B-52s & Devo','Pine Knob Music Theatre','Clarkston, MI','Thursday','9/25/2025','7:00 PM','7216294','The-B-52s---Devo-9-25-2025'],['The B-52s & Devo','Xfinity Center - MA','Mansfield, MA','Thursday','10/2/2025','7:00 PM','7216295','The-B-52s---Devo-10-2-2025'],['The B-52s & Devo','PNC Bank Arts Center','Holmdel, NJ','Saturday','10/4/2025','7:00 PM','7216296','The-B-52s---Devo-10-4-2025'],['The B-52s & Devo','Northwell at Jones Beach Theater','Wantagh, NY','Sunday','10/5/2025','7:00 PM','7216297','The-B-52s---Devo-10-5-2025'],['The B-52s & Devo','Shoreline Amphitheatre - CA','Mountain View, CA','Thursday','10/16/2025','7:00 PM','7216303','The-B-52s---Devo-10-16-2025'],['The B-52s & Devo','Hollywood Bowl','Los Angeles, CA','Saturday','10/18/2025','7:00 PM','7216304','The-B-52s---Devo-10-18-2025'],['The B-52s & Devo','PNC Music Pavilion - Charlotte','Charlotte, NC','Friday','10/24/2025','7:00 PM','7216298','The-B-52s---Devo-10-24-2025'],['The B-52s & Devo','Ameris Bank Amphitheatre','Alpharetta, GA','Saturday','10/25/2025','7:00 PM','7216299','The-B-52s---Devo-10-25-2025'],['The B-52s & Devo','Germania Insurance Amphitheater','Austin, TX','Saturday','11/1/2025','7:00 PM','7216300','The-B-52s---Devo-11-1-2025'],['The B-52s & Devo','The Cynthia Woods Mitchell Pavilion','Spring, TX','Sunday','11/2/2025','7:00 PM','7216301','The-B-52s---Devo-11-2-2025']],'The B-52s','http://www.ticketnetwork.com/en/search/?text=The B-52s');