<!--
var w1 = null;
var w2 = null;

function submitNewWin(aAction, aMethod, aFormName, aw, ah)
{
	if (typeof aFormName == "undefined")
		aFormName = "fxDealForm"
	//	aFormName = "newWinForm";

	if (typeof aMethod=="undefined")
		aMethod="handle";

	if (typeof aw=="undefined")
		aw="495";

	if (typeof ah=="undefined")
		ah="360";

	var wOpt = "";
	wOpt += "toolbar=no,";
	wOpt += "location=no,";
	wOpt += "directories=no,";
	wOpt += "resizable=yes,";
	wOpt += "scrollbars=yes,";
	wOpt += "status=yes,";
	wOpt += "menubar=yes,";
	wOpt += "width=" + aw + ",";
	wOpt += "height=" + ah;

	var _url = "empty.jsp";
	var nv = navigator;


	if (nv.appName=='Netscape' || nv.appVersion.charAt(0)>='4')
	{
		if (w1==null || w1.closed)
			w1 = window.open (_url, "w1", wOpt);
	}
	else
	{
		if (w1==null)
		{
			w1 = window.open (_url, "w1", wOpt);
		}
		else
		{
			closeIEWin();
			setTimeout('w1=window.open(_url, "w1", wOpt)', 1000);
		}
	}

	while (w1==null);

	with(document.forms[aFormName])
	{
		if (aAction!="")
			action = aAction;

		target="w1";
		method.value=aMethod;
		submit();
	}

	w1.focus();

}

// -->
