//
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([['Eyes of The Nile - Iron Maiden Tribute','The Vixen','Mchenry, IL','Saturday','4/12/2025','7:00 PM','6952163','Eyes-of-The-Nile---Iron-Maiden-Tribute-4-12-2025'],['Powerslave - Tribute to Iron Maiden','Brewster Street Ice House','Corpus Christi, TX','Saturday','4/12/2025','9:00 PM','6970409','Powerslave---Tribute-to-Iron-Maiden-4-12-2025'],['Powerslave - Tribute to Iron Maiden','Arcada Theatre','Saint Charles, IL','Thursday','4/17/2025','7:30 PM','7049969','Powerslave---Tribute-to-Iron-Maiden-4-17-2025'],['Sanctuary - Iron Maiden Tribute','Dingbatz','Clifton, NJ','Saturday','4/19/2025','7:00 PM','7067693','Sanctuary---Iron-Maiden-Tribute-4-19-2025'],['Iron Maiden','Utilita Arena Birmingham','Birmingham, United Kingdom','Saturday','6/21/2025','7:00 PM','6725000','Iron-Maiden-6-21-2025'],['Iron Maiden','Co-Op Live','Manchester, United Kingdom','Sunday','6/22/2025','7:30 PM','6725001','Iron-Maiden-6-22-2025'],['Iron Maiden','London Stadium At Queen Elizabeth Olympic Park','London, United Kingdom','Saturday','6/28/2025','TBD','6725076','Iron-Maiden-6-28-2025'],['Iron Maiden','OVO Hydro','Glasgow, United Kingdom','Monday','6/30/2025','TBD','6732662','Iron-Maiden-6-30-2025'],['World Wide Maiden - Tribute to Iron Maiden','Canyon Club - Agoura Hills','Agoura Hills, CA','Thursday','9/11/2025','8:00 PM','7070577','World-Wide-Maiden---Tribute-to-Iron-Maiden-9-11-2025']],'Iron Maiden','http://www.ticketnetwork.com/en/search/?text=Iron%20Maiden');