    function sizedPopup(url,height,width,left,top,type) {
          self.name = "opener";
          remote = open(url, "remote", "resizable,scrollbars,status,width="+width+",height="+height+",left="+left+",top="+top);
          if (type==1) {
               window.focus();
               remote.blur();
          } else {
               remote.focus();
          }
    }
