function windowOpener_custom(url,name,toolbar,width,height,status,scrolls,resizeable) {
	browserName = navigator.appName;
	browserVer = navigator.appVersion.substring(0,1);
	if (width==null) {width=450;}
	if (height==null) {height=400;}
	if (name==null) {name="globaltPopup"}
	if (browserName != "Netscape" || browserVer != 2) { 
	    window.open(url,name,"toolbar="+toolbar+",height="+height+",width="+width+",location=no,directories=no,status="+status+",menubar=no,scrollbars="+scrolls+",resizable="+resizeable);
	}
}
