<!--
var win2;

function fOpenWin2(pUrl,pW,pH) {
	if ((win2 && win2.closed) || !win2)
	{
		win2=window.open(pUrl,'NewWin','width=' + pW + ',height=' +pH+ ',menubar=1,scrollbars=1,resizable=1');
	}
	else
	{
		if (win2.location.href.indexOf(pUrl,0) == -1)
		{
			win2.location.href = pUrl;
			win2.resizeTo(pW,pH+30);
		}
	}
	win2.focus();
}

//-->

