function viewPerson(member_id) {
  var w = window.open('person-view.php?member_id=' + member_id,
                      'person' + Math.random(10000),'width=300,height=300,resizable,scrollbars');
  w.focus();
}

