function popupPage (pURL, wd, ht, winname, xp, yp, rs, st){
		args = "width=" + wd + ","
		+ "height=" + ht + ","
		+ "location=0,"
		+ "menubar=0,scrollbars=";
		args += rs=="yes"?"1,":"0,";
		args += "resizable=0,"
		+ "status=,";
		args += st=="yes"?"1,":"0,";
		args += "titlebar=0,"
		+ "toolbar=0,"
		+ "hotkeys=0,"
		+ "fullscreen=0,"
		+ "left=" + xp + ","
		+ "top=" + yp;
		aP=window.open(pURL,winname,args);
		if ((document.window != null) && (!aP.opener))
		aP.opener = document.window;
		if (parseInt(navigator.appVersion) >= 4) { aP.focus(); }
}
