  var winPop = null;

  function ContentPopper(sContent,name,ileft,itop,iWidth,iHeight)
  {
    winPop = window.open(sContent,name,'scrollbars,resizable=yes,location=no,status=no,menubar=no,toolbar=no,directories=no,left=' + ileft + ',top=' + itop + ',width=' + iWidth + ',height=' + iHeight);
    winPop.focus();
  }
