  var befpopheight=695;
  var befpopwidth=790;

  function openBefWindow(pageToLoad, winName, center) {
  xposition=0; yposition=0;
  if ((parseInt(navigator.appVersion) >= 4 ) && (center)){
  xposition = (screen.width - befpopwidth) / 2;
  if (xposition < 280) xposition = 280;
  yposition = (screen.height - befpopheight) / 2;
  }
  args = "width=" + befpopwidth + ","
    + "location=0,"
    + "menubar=0,"
    + "resizable=0,"
    + "status=0,"
    + "titlebar=0,"
    + "toolbar=0,"
    + "scrollbars=yes,"
    + "height=" + befpopheight + ","
    + "screenx=" + xposition + ","  //NN
    + "screeny=" + yposition + ","  //NN
    + "left=" + xposition + ","    //IE
    + "top=" + yposition;          //IE
  var befpopwin=window.open(pageToLoad,winName,args);
  befpopwin.focus();
 }
