
	if (self != top)
	top.location = self.location;

function openStdWinDlg(sPath, sName, iX, iY)
{
	if (!iX) iX = 750;
	if (!iY) iY = 510;
	try
	{
		window.open(sPath, sName, "width=" + iX + ",height=" + iY + ",status=0,resizable=1");
	}
	catch(e) {}
}


