<!--
function popupform(myform, windowname) {
	var popupwidth = 725;
	var popupheight = 740;

	if (parseInt(navigator.appVersion) > 3) {
		screenw = screen.width;
		screenh = screen.height;
	} else if (navigator.appName == "Netscape" && parseInt(navigator.appVersion) == 3 && navigator.javaEnabled()) {
		var jToolkit = java.awt.Toolkit.getDefaultToolkit();
		var jScreenSize = jToolkit.getScreenSize();

		screenw = jScreenSize.width;
		screenh = jScreenSize.height;
	}

	var positionx = (screenw / 2) - (popupwidth / 2);
	var positiony = (screenh / 2) - (popupheight / 2);
	var properties = "height = " + popupheight + ", width = " + popupwidth + ", left = " + positionx + ", top = " + positiony + ", scrollbars = yes";

	if (!window.focus)return true;
	window.open('', windowname, properties);
	myform.target = windowname;
	return true;
}
//-->