function popup(obj, w, h) {
  var url = (obj.getAttribute) ? obj.getAttribute('href') : obj.href;
  if (!url) return true;
  var args = 'width='+w+',height='+h+',resizable,scrollbars';
  pop = window.open(url,'',args);
  return (pop) ? false : true;
}
