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