//
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([['Fast Fashion - Depeche Mode Tribute & Burn - Tribute to The Cure','Basecamp Pub','Lisle, IL','Friday','4/17/2026','4:00 PM','7801113','Fast-Fashion---Depeche-Mode-Tribute---Burn---Tribute-to-The-Cure-4-17-2026'],['The Gathering Gloom - Tribute to The Cure','Music Box Supper Club','Cleveland, OH','Saturday','4/18/2026','8:00 PM','7813059','The-Gathering-Gloom---Tribute-to-The-Cure-4-18-2026'],['The Gathering Gloom - Tribute to The Cure','Mr Small's Theatre','Pittsburgh, PA','Sunday','4/19/2026','8:00 PM','7817891','The-Gathering-Gloom---Tribute-to-The-Cure-4-19-2026'],['The Lovecats - Tribute to The Cure','Aladdin Theater','Portland, OR','Friday','5/22/2026','8:00 PM','7780212','The-Lovecats---Tribute-to-The-Cure-5-22-2026'],['LoveSong - A Tribute to The Cure','The Radio Room Greenville','Greenville, SC','Friday','5/29/2026','8:00 PM','7729921','LoveSong---A-Tribute-to-The-Cure-5-29-2026'],['Unloveable - Smiths and Morrissey Tribute & Strange Attraction - The Cure Tribute','Anchor Rock Club','Atlantic City, NJ','Friday','5/29/2026','8:00 PM','7813829','Unloveable---Smiths-and-Morrissey-Tribute---Strange-Attraction---The-Cure-Tribute-5-29-2026'],['The Lovecats','Hidden Hall','Seattle, WA','Friday','5/29/2026','8:00 PM','7776770','The-Lovecats-5-29-2026'],['LoveSong - A Tribute to The Cure','Amos' Southend','Charlotte, NC','Saturday','5/30/2026','8:30 PM','7708872','LoveSong---A-Tribute-to-The-Cure-5-30-2026'],['The Cure','Parkbuhne Wuhlheide','Berlin, Germany','Friday','7/10/2026','8:00 PM','7823334','The-Cure-7-10-2026'],['Los Tigres del Norte','Cure Insurance Arena','Trenton, NJ','Friday','8/28/2026','8:30 PM','7759904','Los-Tigres-del-Norte-8-28-2026'],['The Gathering Gloom - Tribute to The Cure','The Milton Theatre','Milton, DE','Thursday','9/10/2026','8:00 PM','7843895','The-Gathering-Gloom---Tribute-to-The-Cure-9-10-2026'],['The Gathering Gloom - Tribute to The Cure','Daryl's House','Pawling, NY','Sunday','9/13/2026','7:00 PM','7856706','The-Gathering-Gloom---Tribute-to-The-Cure-9-13-2026']],'The Cure','http://www.ticketnetwork.com/en/search/?text=The%20Cure');