function BiblePopUp (ref) {
  var URL = 'http://www.biblegateway.com/passage/?search=' + ref + '&interface=print';
  popUp = window.open (URL, 'Bible', 'height=600,width=550,menubar,scrollbars');
}

function BibleChPopUp (bb, bc) {
  var URL = 'http://www.biblegateway.com/passage/index.php?book_id=' + bb + '&chapter=' + bc + '&interface=print';
  popUp = window.open (URL, 'Bible', 'height=600,width=550,menubar,scrollbars');
}

function popIt() {
  var n = window.open('about:blank', 'formwin', 'scrollbars=yes,height=600,width=550,status=no');
  return true;
}