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