// JavaScript Document
function t_popupBible (passage) {
  biblewin=window.open(par+"/biblepopup.php?passage="+passage, "biblewin", "status=0, menubar=0, addressbar=0, resizable=0, height=450, width=340");
}
  
  function openwin(url, opt) {
    //opens window
    optwin=window.open(url, "optwin", "status=0, menubar=0, addressbar=0, resizable=0, "+opt);
    temp=opt.split(",");
    winopt=new Object();
    for(x=0; x<temp.length; x++) {
	  t2 = temp[x].split("=");
	  eval("winopt." + t2[0] + "=" + t2[1] + ";");
    }
    optwin.resizeTo(winopt.width, winopt.height);
  }
