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