function bdb_Pop(q,b,w,h) {
  var x = (screen.width-w)/2;
  var y = (screen.height-h)/2;
  return window.open(
    'http://ekaristi.org/bible/bq.php?q='+q+'&w='+b,
    'BDB',
    'width='   + w + ',' +
    'height='  + h + ',' +
    'screenX=' + x + ',' +
    'screenY=' + y + ',' +
    'left='    + x + ',' +
    'top='     + y + ',' +
    'scrollbars,alwaysRaised,resizable'
  );
}
