  var presspopheight=470;
  var presspopwidth=430;

  function openPressWindow(pageToLoad, winName, center) {
  xposition=0; yposition=0;
  if ((parseInt(navigator.appVersion) >= 4 ) && (center)){
  xposition = (screen.width - presspopwidth) / 2;
  if (xposition < 480) xposition = 480;
  yposition = (screen.height - presspopheight) / 2;
  }
  args = "width=" + presspopwidth + ","
    + "location=0,"
    + "menubar=0,"
    + "resizable=0,"
    + "status=0,"
    + "titlebar=0,"
    + "toolbar=0,"
    + "scrollbars=yes,"
    + "height=" + presspopheight + ","
    + "screenx=" + xposition + ","  //NN
    + "screeny=" + yposition + ","  //NN
    + "left=" + xposition + ","    //IE
    + "top=" + yposition;          //IE
  var presspopwin=window.open(pageToLoad,winName,args);
  presspopwin.focus();
   }