	function openBrowserWindow(url,name,width,height,scrollbars) {
  		var properties = "width="+width+",height="+height+",scrollbars="+scrollbars+",resizable=yes";
  		var Case=window.open(url,name,properties);
  		if(Case) Case.focus();
  		return !Case;
	}