function ntInit() {
	ns4=(document.layers)?true:false;
	ns6=(document.getElementById&&!document.all)?true:false;
	ie4=(document.all&&!document.getElementById)?true:false;
	ie5=(document.getElementById)?true:false;
	browserName = navigator.appName;
	browserVer = navigator.appVersion.substring(0,1);
	//updClock();
}

function windowOpener(url,width,height,name,scrollers) {
	ntInit();
	/* Must call init() first for browser detection */
	if (width==null) {width=400;}
	if (height==null) {height=400;}
	if (name==null) {name="globaltPopup"}
	var topPx = (browserName=="Netscape").php?"screenX":"top";
	var leftPx = (browserName=="Netscape").php?"screenY":"left";
                var winl = (screen.width - width) / 2;
                var wint = (screen.height - height) / 2;
	if (browserName != "Netscape" || browserVer != 2) {
		controlWindow=window.open( url,name,"toolbar=no,height="+height+",width="+width+",location=no,directories=no,status=no,menubar=no,scrollbars="+scrollers+",resizable=no,"+leftPx+"="+winl+","+topPx+"="+wint+"");
	}
}