// JavaScript Document

<!--
function windowOpener(url,width,height,name,scrolls) {
				browserName = navigator.appName;
				browserVer = navigator.appVersion.substring(0,1);
				if (width==null) {width=400;}
				if (height==null) {height=400;}
				if (name==null) {name="globaltPopup"}
				if (scrolls==true) {
									scrollsOption="yes";
								}
								else {
										scrollsOption="yes";
								}

				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=" + scrollsOption + ",resizable=no");
				}
		}


<!--