function addPopListTrigger() {
  if(!document.getElementById('popListLink')) return false;
  var link = document.getElementById('popListLink').href;
  document.getElementById('popListLink').onclick = function () {
    window.open(link.replace(/The/, "Pop"), 'imageGallery', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=750,height=500,left=50,top=50');
    return false;
  }
}
addLoadEvent(addPopListTrigger);