//
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([['Harry Potter and the Prisoner of Azkaban In Concert','Popejoy Hall','Albuquerque, NM','Friday','3/6/2026','7:30 PM','7489135','Harry-Potter-and-the-Prisoner-of-Azkaban-In-Concert-3-6-2026'],['Harry Potter and the Prisoner of Azkaban In Concert','Popejoy Hall','Albuquerque, NM','Saturday','3/7/2026','2:00 PM','7489136','Harry-Potter-and-the-Prisoner-of-Azkaban-In-Concert-3-7-2026'],['The Book Of Mormon','Popejoy Hall','Albuquerque, NM','Friday','3/13/2026','7:30 PM','7094743','The-Book-Of-Mormon-3-13-2026'],['The Book Of Mormon','Popejoy Hall','Albuquerque, NM','Saturday','3/14/2026','2:00 PM','7094747','The-Book-Of-Mormon-3-14-2026'],['The Book Of Mormon','Popejoy Hall','Albuquerque, NM','Saturday','3/14/2026','7:30 PM','7094744','The-Book-Of-Mormon-3-14-2026'],['The Book Of Mormon','Popejoy Hall','Albuquerque, NM','Sunday','3/15/2026','1:00 PM','7094748','The-Book-Of-Mormon-3-15-2026'],['The Book Of Mormon','Popejoy Hall','Albuquerque, NM','Sunday','3/15/2026','6:30 PM','7094745','The-Book-Of-Mormon-3-15-2026'],['Shamrock Tenors','Popejoy Hall','Albuquerque, NM','Tuesday','3/17/2026','7:00 PM','7460454','Shamrock-Tenors-3-17-2026'],['The Hound Of The Baskervilles','Popejoy Hall','Albuquerque, NM','Friday','3/20/2026','7:30 PM','7489137','The-Hound-Of-The-Baskervilles-3-20-2026'],['Women of Americana: A Celebration of American Music','Popejoy Hall','Albuquerque, NM','Sunday','3/22/2026','3:00 PM','7489138','Women-of-Americana--A-Celebration-of-American-Music-3-22-2026']],'Popejoy Hall Albuquerque','http://www.ticketnetwork.com/en/search/?text=Popejoy%20Hall%20Albuquerque');