/*
 * File: popup.js
 * Include with: <script src=popup.js></script>
 *
 * A simple routine to display a popup window using a given html file
 */

function popup(fname)
{  var f = "../bibles/" + fname + ".htm";
   var w = window.open(f, "", "width=360,height=240,status=no,resizable=no");
}

