  var cypopheight=110;
  var cypopwidth=240;

  function opencyWindow(pageToLoad, winName, center) {
  xposition=100; yposition=100;
  if ((parseInt(navigator.appVersion) >= 4 ) && (center)){
  xposition = (screen.width - cypopwidth) / 2;
  if (xposition < 280) xposition = 280;
  yposition = (screen.height - cypopheight) / 2;
  }
  args = "width=" + cypopwidth + ","
    + "location=0,"
    + "menubar=0,"
    + "resizable=0,"
    + "status=0,"
    + "titlebar=0,"
    + "toolbar=0,"
    + "height=" + cypopheight + ","
    + "screenx=" + xposition + ","  //NN
    + "screeny=" + yposition + ","  //NN
    + "left=" + xposition + ","    //IE
    + "top=" + yposition;          //IE
  var cypopwin=window.open(pageToLoad,winName,args);
 cypopwin.focus();
 }