var popimg = null;

function cpimgpopdown() {
  if (popimg && !popimg.closed) popimg.close();
}

function cpimgpopup(obj,w,h) {
  var givenurl = (obj.getAttribute) ? obj.getAttribute('href') : obj.href;
  if (!givenurl) return true;
  w = (w) ? w += 20 : 150;  // 150px*150px is the default size
  h = (h) ? h += 25 : 150;
  var url = givenurl.replace(/shop_image/,"popup_image")
  var args = 'width='+w+',height='+h+',resizable, scrollbars';
  cpimgpopdown();
  popimg = window.open(url,'',args);
  return (popimg) ? false : true;
}

window.onunload = cpimgpopdown;

