function popup(anchor, width, height) {
    var nw = window.open(anchor.href, '_blank',
      'menubar=0,location=0,toolbar=0,personalbar=0,status=0,'
      + 'scrollbars=1,height=' + height + ',width=' + width
    );
    nw.focus(true);
    return false;
}
